import { SemVer } from 'semver';
interface ApiVersions {
    deviceApi: string;
    companionApi: string;
}
interface WithProposedAPI {
    enableProposedAPI?: boolean;
}
export default function sdkVersion(toolchainVersion?: string): SemVer;
export declare function apiVersions(projectConfig?: WithProposedAPI, toolchainVersion?: string): ApiVersions;
export {};
