import { ModalContentProps, Styles } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const ModalContent: ({ title, subtitle, content, submit, submitText, cancel, cancelText, style, error, children }: { title?: string; subtitle?: string | null; content: ReactNode; submit?: () => void; submitText?: string; cancel?: () => void; cancelText?: string; style?: Styles; error?: string; children: (props: ModalContentProps & { isAccessibilityOn?: boolean; }) => ReactNode; }) => ReactNode; export default ModalContent;