import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from './dialog'; import * as React from 'react'; /** * Drop-in replacement for Dialog: centred modal on tablet/desktop, * bottom-sheet on mobile (< md). Same API as Dialog. */ export declare function ResponsiveDialog(props: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export declare function ResponsiveDialogTrigger(props: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export declare function ResponsiveDialogClose(props: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export interface ResponsiveDialogContentProps extends React.ComponentProps { showHandle?: boolean; } export declare function ResponsiveDialogContent({ showHandle, ...props }: ResponsiveDialogContentProps): import("react/jsx-runtime").JSX.Element; export declare function ResponsiveDialogHeader(props: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export declare function ResponsiveDialogFooter(props: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export declare function ResponsiveDialogTitle(props: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export declare function ResponsiveDialogDescription(props: React.ComponentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=responsive-dialog.d.ts.map