export interface SystemInfo {
    username: string;
    email: string;
    currentTime: string;
}
/**
 * Get all system information needed for 42 header generation
 */
export declare function getSystemInfo(): Promise<SystemInfo>;
/**
 * Get file creation time if available
 * Falls back to current time if not available
 */
export declare function getFileCreationTime(filePath: string): Promise<string>;
