export interface FileFilterOptions {
    exclude: string[];
    include: string[];
    useGitignore: boolean;
}
export declare function getFilePaths(directory: string, options: FileFilterOptions): Promise<string[]>;
export declare function readFileContent(filePath: string): Promise<string>;
