import { RemotePattern } from './types'; /** * Checks whether the given URL matches the given remote pattern from the build output images * configuration. * * https://vercel.com/docs/build-output-api/v3/configuration#images * * @param url URL to check. * @param pattern Remote pattern to match against. * @returns Whether the URL matches the remote pattern. */ export declare const isRemotePatternMatch: (url: URL, { protocol, hostname, port, pathname }: RemotePattern) => boolean; //# sourceMappingURL=is-remote-pattern-match.d.ts.map