export declare type AliasFinderProps = { basePath: string; rootDirFiles: string[]; packageJson: any; }; export declare type Alias = { alias: string; paths: string[]; }; export declare type AliasFinder = (props: AliasFinderProps) => Promise;