import * as CURRENT_DEPRECATIONS from "../../deprecation-versions.js";
type MajorMinor = `${number}.${number}`;
type DeprecationFlag = keyof typeof CURRENT_DEPRECATIONS;
export declare function getDeprecations(compatVersion: MajorMinor | null | undefined, deprecations?: { [key in DeprecationFlag]? : boolean }): { [key in DeprecationFlag] : boolean };
export {};
