export interface RichTextFieldClasses {
    /** Styles applied to the root element. */
    root: string;
    /** Styles applied to the root element when variant="standard". */
    standard: string;
    /** Styles applied to the root element when variant="outlined". */
    outlined: string;
    /** Styles applied to the menu bar element. */
    menuBar: string;
    /** Styles applied to the menu bar content element. */
    menuBarContent: string;
    /** Styles applied to the content element. */
    content: string;
}
export type RichTextFieldClassKey = keyof RichTextFieldClasses;
export declare const richTextFieldClasses: RichTextFieldClasses;
