/**
 * Validate a resume JSON file.
 * @param resumeFile The path to the resume JSON file
 * @returns Promise resolving with a boolean whether resume JSON is valid
 */
export declare const validate: (resumeFile: string) => Promise<boolean>;
