import { default as React } from 'react'; import { Flex } from '../flex'; import * as DrawerPrimitive from '@radix-ui/react-dialog'; export type ContentProps = Omit, 'forceMount' | 'onOpenAutoFocus' | 'onCloseAutoFocus' | 'onEscapeKeyDown' | 'onPointerDownOutside' | 'onInteractOutside'> & { forceMount?: DrawerPrimitive.DialogContentProps['forceMount']; size?: 'md' | 'lg'; onOpenAutoFocus?: DrawerPrimitive.DialogContentProps['onOpenAutoFocus']; onCloseAutoFocus?: DrawerPrimitive.DialogContentProps['onCloseAutoFocus']; onEscapeKeyDown?: DrawerPrimitive.DialogContentProps['onEscapeKeyDown']; onPointerDownOutside?: DrawerPrimitive.DialogContentProps['onPointerDownOutside']; onInteractOutside?: DrawerPrimitive.DialogContentProps['onInteractOutside']; } & React.ComponentPropsWithoutRef; export declare const Content: React.ForwardRefExoticComponent>;