declare module '@warp-drive/build-config/-private/utils/features' {
  import * as CURRENT_FEATURES from '@warp-drive/build-config/canary-features.ts';
  type FEATURE = keyof typeof CURRENT_FEATURES;
  export function getFeatures(isProd: boolean): {
      [key in FEATURE]: boolean;
  };
  export {};
}
//# sourceMappingURL=features.d.ts.map