/** @format */
import { ProxyType } from "../../types";
export declare type FindFiles = (args: {
    proxyType?: ProxyType;
    root: string;
    src: string;
    ignore?: string[];
}) => string[];
export declare const findFiles: FindFiles;
