import { ContentProps } from '@zag-js/drawer'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface DrawerContentBaseProps extends PolymorphicProps, ContentProps { } export interface DrawerContentProps extends Omit, 'draggable'>, DrawerContentBaseProps { } export declare const DrawerContent: ForwardRefExoticComponent>;