Repository URL to install this package:
|
Version:
0.0.4 ▾
|
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<ModalProps>;
export declare const OrDivider: ({ children }: {
children?: React.ReactNode;
}) => JSX.Element;
export default Modal;