declare const _default: (url: string, prev: string) => {
    contents: string;
    file?: undefined;
} | {
    file: string | null;
    contents: string;
} | {
    file: string;
    contents?: undefined;
} | null;
export = _default;
