import { default as React } from 'react'; import { Theme } from './const'; export interface PropsType { className?: string; theme?: Theme; fixed?: boolean; opened: boolean; onClose?: () => void; onBack?: () => void; onScroll?: (e: any) => void; title?: string; renderTitle?: React.ReactNode; back?: boolean; close?: boolean; children: React.ReactNode; isLoading?: boolean; header?: React.ReactNode; bodyClassName?: string; bodyStyle?: React.CSSProperties; getContainer?: HTMLElement | (() => HTMLElement); } declare const _default: React.ForwardRefExoticComponent>; export default _default;