export declare function formatPath(path: string, rootDir?: string | boolean): string; export declare function fileStatsTable(args: { dir: string; showHeader?: boolean; }): Promise<{ table: import("@platform/log/lib/server").ILogTable; dir: string; paths: string[]; isEmpty: boolean; sizes: { path: string; bytes: number; size: string; }[]; total: { bytes: number; size: string; }; }>;