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