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; children?: React.ReactNode; } declare type NativeAttrs = Omit, keyof Props>; export declare type ModalWrapperProps = Props & NativeAttrs & ModalVariantsProps & { css?: CSS; }; declare const _default: React.ComponentType & Omit>; export default _default;