import { RenderOptions } from '../types.js';
/**
 * Renders a resume from a JSON file to HTML and PDF.
 * @param resumeFile The path to the resume JSON file
 * @param options An options object with the following properties:
 * @param options.theme The theme to use for rendering
 * @param options.outDir The directory to save the output files (default: '.')
 * @returns A promise resolving when rendering is complete
 */
export declare const render: (resumeFile: string, options: RenderOptions) => Promise<void>;
