import { HTMLAttributes, ReactNode, RefCallback } from 'react'; export interface SlidingModalProps { dataHook?: string; width: string | number; isOpen?: boolean; style?: HTMLAttributes['style']; className?: HTMLAttributes['className']; children?: ReactNode; contentRef?: RefCallback; onExited?: () => void; onEntered?: () => void; transitionStatus?: string; onRequestClose?: () => void; shadowWidth?: number; } export declare function SlidingModal(props: SlidingModalProps): JSX.Element; //# sourceMappingURL=SlidingModal.d.ts.map