import { DrawerProps as AndDrawerProps } from "antd"; import * as React from "react"; export interface DrawerProps extends Omit { placement?: "top" | "right" | "bottom" | "left"; visible?: boolean; onClose: (e?: React.KeyboardEvent | React.MouseEvent) => void; closeIcon?: React.ReactNode; maskClosable?: boolean; closable?: boolean; children?: React.ReactNode; title?: string | React.ReactNode; destroyOnClose?: boolean; className?: string; style?: React.CSSProperties; headerStyle?: React.CSSProperties; drawerStyle?: React.CSSProperties; maskStyle?: React.CSSProperties; bodyStyle?: React.CSSProperties; width?: string | number; minWidth?: string | number; maxWidth?: string | number; height?: string | number; getContainer?: AndDrawerProps["getContainer"]; mask?: boolean; } declare const PlusDrawer: { ({ placement, visible, onClose, closeIcon, maskClosable, children, title, destroyOnClose, className, style, bodyStyle, closable, headerStyle, drawerStyle, maskStyle, width, minWidth, maxWidth, height, getContainer, mask, forceRender, ...rest }: DrawerProps): JSX.Element; Content({ footer, children, noStyle, contentClassName, }: { footer?: React.ReactNode; children?: React.ReactNode; noStyle?: boolean | undefined; contentClassName?: string | undefined; }): JSX.Element; }; export { PlusDrawer }; //# sourceMappingURL=index.d.ts.map