import { jsx } from '@emotion/react';
import type { OnCloseHandler } from '@atlaskit/modal-dialog';
import type { Format } from './Format';
interface ModalContentProps {
    formatting: Format[];
    onClose: OnCloseHandler | undefined;
}
export declare const ModalContent: ({ formatting, onClose }: ModalContentProps) => jsx.JSX.Element;
export default ModalContent;
