import React from 'react'; import { Variants } from 'framer-motion'; import { CustomTheme } from '../../../types'; export declare const contentVariants: Variants; declare type ModalProps = { open: boolean | undefined; pages: any; pageId: string; positionInside?: boolean; inline?: boolean; onClose?: () => void | undefined; onBack?: () => void | undefined; onInfo?: () => void | undefined; demo?: { theme: string; mode?: string; customTheme: CustomTheme; }; }; declare const Modal: React.FC; export declare const OrDivider: ({ children }: { children?: React.ReactNode; }) => JSX.Element; export default Modal;