@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
19 lines (18 loc) • 740 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '../../../core';
export type ComboboxOptionsStylesNames = 'options';
export interface ComboboxOptionsProps extends BoxProps, CompoundStylesApiProps<ComboboxOptionsFactory>, ElementProps<'div'> {
/** Id of the element that should label the options list */
labelledBy?: string;
}
export type ComboboxOptionsFactory = Factory<{
props: ComboboxOptionsProps;
ref: HTMLDivElement;
stylesNames: ComboboxOptionsStylesNames;
compound: true;
}>;
export declare const ComboboxOptions: import("../../../core").MantineComponent<{
props: ComboboxOptionsProps;
ref: HTMLDivElement;
stylesNames: ComboboxOptionsStylesNames;
compound: true;
}>;