import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface DrawerIndentBaseProps extends PolymorphicProps { } export interface DrawerIndentProps extends HTMLProps<'div'>, DrawerIndentBaseProps { } export declare const DrawerIndent: ForwardRefExoticComponent>;