UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 688 B
import React from 'react'; import { SelectProps as MantineSelectProps, AutocompleteProps as MantineAutocompleteProps } from '@mantine/core'; export type SelectProps = { keepSearch?: boolean; clearable?: boolean; } & (MantineSelectProps | MantineAutocompleteProps); export declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLInputElement>>; export declare const _AutoComplete: React.ForwardRefExoticComponent<{ clearable?: boolean; } & MantineAutocompleteProps & React.RefAttributes<HTMLInputElement>>; export declare const _Select: React.ForwardRefExoticComponent<MantineSelectProps & React.RefAttributes<HTMLInputElement>>;