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