import { DialogOverlay, DialogPortal } from '../Dialog/Dialog'; import { DrawerCloseProps, DrawerContentProps, DrawerHeaderProps, DrawerProps, DrawerTitleProps, DrawerTriggerProps } from '../Drawer/types'; import * as React from "react"; declare const DrawerDialog: { (props: DrawerProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const DrawerDialogTrigger: React.ForwardRefExoticComponent>; declare const DrawerDialogClose: React.ForwardRefExoticComponent>; declare const DrawerDialogContent: React.ForwardRefExoticComponent>; declare const DrawerDialogHeader: { (props: DrawerHeaderProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const DrawerDialogTitle: React.ForwardRefExoticComponent>; declare const DrawerDialogDescription: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const DrawerDialogFooter: { (props: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const DrawerDialogOverlay: { (props: React.ComponentProps): import("react/jsx-runtime").JSX.Element | null; displayName: string; }; declare const DrawerDialogPortal: { (props: React.ComponentProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { DrawerDialog, DrawerDialogClose, DrawerDialogContent, DrawerDialogDescription, DrawerDialogFooter, DrawerDialogHeader, DrawerDialogOverlay, DrawerDialogPortal, DrawerDialogTitle, DrawerDialogTrigger, }; export type { DrawerProps as DrawerDialogProps, DrawerContentProps as DrawerDialogContentProps, DrawerHeaderProps as DrawerDialogHeaderProps, DrawerTitleProps as DrawerDialogTitleProps, DrawerTriggerProps as DrawerDialogTriggerProps, DrawerCloseProps as DrawerDialogCloseProps, };