import { Config } from './types';
export interface FileEntry {
    relativePath: string;
    content: string | {
        error: string;
    };
}
export declare function walk(config: Config): Promise<FileEntry[]>;
