/** * Shared file utilities for CLI commands */ /** * File types recognized by the CLI */ export type FileType = 'canvas' | 'workflow' | 'testTrace' | 'library' | 'dashboard' | 'unknown'; /** * Determine file type based on naming convention * * This function is shared between validate and lint commands to ensure * consistent file type detection across the CLI. */ export declare function determineFileType(filePath: string): FileType; //# sourceMappingURL=file-utils.d.ts.map