export interface FontStyleValue {
    bold: boolean;
    italic: boolean;
    underline: boolean;
    strikethrough: boolean;
}
interface FontStyleProps {
    value: FontStyleValue;
    onChange: (value: FontStyleValue) => void;
}
export declare function FontStyle({ value, onChange }: FontStyleProps): preact.JSX.Element;
export {};
