import React, { ReactNode } from 'react'; import { Variants } from 'framer-motion'; export declare const contentVariants: Variants; export declare const routes: { CONNECTORS: string; PROFILE: string; CONNECT: string; }; export type Page = { id: keyof typeof routes; content: ReactNode; }; type ModalProps = { open?: boolean; pages: Page[]; pageId: string; positionInside?: boolean; inline?: boolean; onClose?: () => void; onBack?: () => void; onInfo?: () => void; }; declare const Modal: React.FC; export declare const OrDivider: ({ children }: { children?: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; export default Modal;