UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

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