import { XmlComponent } from '../xml-components';
import { CharacterSet } from './font';
export declare const createRegularFont: ({ name, index, fontKey, characterSet, }: {
    readonly name: string;
    readonly index: number;
    readonly fontKey: string;
    readonly characterSet?: (typeof CharacterSet)[keyof typeof CharacterSet];
}) => XmlComponent;
