declare module '@warp-drive/build-config/-private/utils/deprecations' {
  import * as CURRENT_DEPRECATIONS from '@warp-drive/build-config/deprecation-versions.ts';
  type MajorMinor = `${number}.${number}`;
  type DeprecationFlag = keyof typeof CURRENT_DEPRECATIONS;
  export function getDeprecations(compatVersion: MajorMinor | null | undefined, deprecations?: {
      [key in DeprecationFlag]?: boolean;
  }): {
      [key in DeprecationFlag]: boolean;
  };
  export {};
}
//# sourceMappingURL=deprecations.d.ts.map