import type { Program } from "../programs/base";
export type Polyfills = {
    bundle: string;
    requirements: [string, string | undefined][];
};
export declare const getGlobalPolyfillsInmportPaths: (program: Program) => string[];
export declare const getCustomPolyfillsImports: (program: Program) => string[];
