import { PlacementType } from "@leight-core/leight"; import { ButtonProps, DrawerProps } from "antd"; import { PushState } from "antd/lib/drawer"; import { FC, ReactNode } from "react"; export interface IDrawerButtonProps extends Partial { label?: ReactNode; title?: string; /** * Optional drawer width. */ width?: string | number; height?: string | number; drawerProps?: DrawerProps; placement?: PlacementType; push?: boolean | PushState; fullscreen?: boolean; } /** * Default Antd button without any preset; just the drawer is shown on click. */ export declare const DrawerButton: FC;