interface Props {
    editor: any;
    isBold: boolean;
    isItalic: boolean;
    isUnderline: boolean;
    isStrikethrough: boolean;
    isSuperscript: boolean;
    isSubscript: boolean;
    isCode: boolean;
    onClearFormatting: () => void;
}
export declare function TextFormattingControls({ editor, isBold, isItalic, isUnderline, isStrikethrough, isSuperscript, isSubscript, isCode, onClearFormatting }: Props): import("react/jsx-runtime").JSX.Element;
export {};
