import React, { 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; onEntering?: () => void; onExiting?: () => void; transitionStatus?: string; onRequestClose?: () => void; shadowWidth?: number; appendTo?: 'parent'; overlay?: boolean; } export declare function SlidingModal(props: SlidingModalProps): React.JSX.Element; //# sourceMappingURL=SlidingModal.d.ts.map