import type { Node } from "postcss";
export type ImportResolve = (url: string, basedir: string, extensions: string[], atRule: Node) => Promise<string> | string;
export declare const importResolve: ImportResolve;
