import { DrawerProps } from './types'; import { ReactNode } from 'react'; export type DrawerDFProps = { main?: ReactNode; footer?: ReactNode; header?: ReactNode; showBackButton?: boolean; onBackClick?: () => void; } & Omit; export declare const DrawerDF: { ({ main, header, footer, showBackButton, onBackClick, ...restProps }: DrawerDFProps): import("react/jsx-runtime").JSX.Element; Content: ({ className, children, refEl, fixedWidth, style, ...props }: import('./types').DrawerDFContentProps) => import("react/jsx-runtime").JSX.Element; Header: ({ className, children, refEl, fixedWidth, style, title, subTitle, badge, rightBlock, footerBlock, ...props }: import('./types').DrawerDFHeaderProps) => import("react/jsx-runtime").JSX.Element; DotsIconButton: ({ dropdownProps, iconSize, ...props }: import('./types').DrawerDFDotsIconButtonProps) => import("react/jsx-runtime").JSX.Element; Footer: ({ className, children, refEl, ...props }: import('./types').DrawerDFFooterProps) => import("react/jsx-runtime").JSX.Element; };