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