import { ResumeData } from '../resumeTypes';
/**
 * Generates an HTML string for a complete resume for the "Edge" template
 * using provided resume data. The Edge template presents important sections
 * in a main vericle layout and sections less important sections to a side
 * layout
 *
 * @param {ResumeData} resumeData - The resume data containing personal information, skills, work experience, and projects.
 * @returns {string} The generated HTML string representing the resume.
 */
export declare function edge(resumeData: ResumeData): string;
