export type TsFile = { depth: 0 | 1; ext: ".ts" | ".tsx"; path: string; }; export declare function getTsFile(path: string): TsFile;