import React from 'react'; type Props = { children?: React.ReactNode; }; type InternalWrapperProps = { logo?: string; wrapper?: React.FC; onClose: () => void; loaded?: boolean; loading?: boolean; children?: React.ReactNode; }; export declare const Wrapper: React.FC; export {};