import * as React from 'react'; import { DrawerProps } from 'tea-component'; import type { CommonPropsType } from '../../types'; declare const TeaDrawer: ({ size, title, style, events, visible, subtitle, showMask, className, placement, extraSlot, footerSlot, childrenSlot, disableCloseIcon, outerClickClosable, }: PropsType) => JSX.Element; export interface PropsType extends CommonPropsType, Pick { visible: boolean; title?: string; extraSlot?: React.ReactNode; footerSlot?: React.ReactNode; childrenSlot?: React.ReactNode; } export default TeaDrawer; export { TeaDrawer };