import React from 'react';
type Props = {
    disabled?: boolean;
    onApprove: () => void;
    onReject: () => void;
    showActions: boolean;
    hideFormattingToolbarActions?: boolean;
};
/**
 * Component for displaying formatting toolbar
 * @returns JSX element of formatting toolbar
 */
declare const FormattingToolbar: React.FC<Props>;
export default FormattingToolbar;
//# sourceMappingURL=FormattingToolbar.d.ts.map