import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '../../../core'; export type ComboboxEmptyStylesNames = 'empty'; export interface ComboboxEmptyProps extends BoxProps, CompoundStylesApiProps, ElementProps<'div'> { } export type ComboboxEmptyFactory = Factory<{ props: ComboboxEmptyProps; ref: HTMLDivElement; stylesNames: ComboboxEmptyStylesNames; compound: true; }>; export declare const ComboboxEmpty: import("../../..").MantineComponent<{ props: ComboboxEmptyProps; ref: HTMLDivElement; stylesNames: ComboboxEmptyStylesNames; compound: true; }>;