import type { FC, ReactNode, Ref } from 'react'; export interface DrawerContentProps { children: ReactNode; asChild?: boolean; ref?: Ref; } export declare const DrawerContent: FC;