import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface DrawerDescriptionBaseProps extends PolymorphicProps {
}
export interface DrawerDescriptionProps extends HTMLProps<'div'>, DrawerDescriptionBaseProps {
}
export declare const DrawerDescription: ForwardRefExoticComponent<DrawerDescriptionProps & RefAttributes<HTMLDivElement>>;
