import { ContentProps } from '@zag-js/bottom-sheet'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface BottomSheetContentBaseProps extends PolymorphicProps, ContentProps { } export interface BottomSheetContentProps extends Omit, 'draggable'>, BottomSheetContentBaseProps { } export declare const BottomSheetContent: ForwardRefExoticComponent>;