import React from 'react'; import { CSS } from '../theme/stitches.config'; import { ModalVariantsProps } from './modal.styles'; interface Props { visible?: boolean; scroll?: boolean; rebound?: boolean; animated?: boolean; fullScreen?: boolean; closeButton?: boolean; as?: keyof JSX.IntrinsicElements; className?: string; onCloseButtonClick?: () => void; } declare type NativeAttrs = Omit, keyof Props>; export declare type ModalWrapperProps = Props & NativeAttrs & ModalVariantsProps & { css?: CSS; }; declare const _default: React.ComponentType & Omit, "visible" | "className" | "rebound">>; export default _default;