declare const providerRemotePatterns: {
    [k: string]: {
        protocol: string;
        hostname: string;
        port: string;
        pathname: string;
    }[] | {
        protocol: string;
        hostname: string;
        port: string;
        pathname: string;
    };
};
declare function remotePatterns(providers: [() => unknown]): ({
    protocol: string;
    hostname: string;
    port: string;
    pathname: string;
} | undefined)[];

export { remotePatterns as default, providerRemotePatterns };
