import { IMagicImporterOptions } from './interfaces/IImporterOptions'; declare const _default: (userOptions?: IMagicImporterOptions | undefined) => (url: string, prev: string) => { contents: string; file?: undefined; } | { file: string | null; contents: string; } | { file: string; contents?: undefined; } | null; export = _default;