interface Props {
    blockType: string;
    onFormatHeading: (tag: "h1" | "h2" | "h3" | "h4" | "h5" | "h6") => void;
    onFormatParagraph: () => void;
    onFormatCode: () => void;
    onApplyFontSize: (size: string) => void;
}
export declare function BlockAndFontControls({ blockType, onFormatHeading, onFormatParagraph, onFormatCode, onApplyFontSize }: Props): import("react/jsx-runtime").JSX.Element;
export {};
