declare const findFile: (filename: string, options?: {
    logError: boolean;
}) => Promise<string>;
declare const findFileSync: (filename: string, options?: {
    logError: boolean;
}) => string;

export { findFile, findFileSync };
