import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface BottomSheetTitleBaseProps extends PolymorphicProps { } export interface BottomSheetTitleProps extends HTMLProps<'h2'>, BottomSheetTitleBaseProps { } export declare const BottomSheetTitle: ForwardRefExoticComponent>;