export declare function collapsePath(path: string, limit?: number): string; export declare function collapsedDirFromPath(path: string | null): string | null; export declare function fileFromPath(path: string | null): string | null; export declare function splitPath(path: string): { head: string; tail: string; }; export declare function cutLongWords(str: string, limit?: number): string; export declare function limitComponentName(str: string, limit?: number): string;