interface Options {
    files: string[];
    cwd: string;
}
export declare const loadFiles: (options: Options) => Promise<{
    files: Array<{
        filepath: string;
        dirpath: string;
        filename: string;
        content: string;
    }>;
    numFiles: number;
}>;
export {};
