import { Resume, Theme } from '../types.js';
/**
 * Get the filename from a path
 * @param path Path to file
 * @returns filename without extension
 */
export declare const getFilename: (path: string) => string;
/**
 * Get the theme to use for rendering
 * @param theme Theme name
 * @param resume Resume object
 * @returns Theme object
 */
export declare const loadTheme: (theme?: string, resume?: Resume) => Promise<Theme>;
