export declare namespace SourceFinder {
    interface IProps {
        exclude?: string[];
        include: string[];
        filter: (location: string) => Promise<boolean>;
    }
    export const find: (props: IProps) => Promise<string[]>;
    export {};
}
