import React from 'react'; /** @public */ export type SelectInputBaseClassKey = 'root' | 'input'; /** @public */ export type SelectClassKey = 'formControl' | 'label' | 'chips' | 'chip' | 'checkbox' | 'root'; /** @public */ export type SelectItem = { label: string; value: string | number; }; /** @public */ export type SelectedItems = string | string[] | number | number[]; export type SelectProps = { multiple?: boolean; items: SelectItem[]; label: string; placeholder?: string; selected?: SelectedItems; onChange: (arg: SelectedItems) => void; triggerReset?: boolean; native?: boolean; disabled?: boolean; margin?: 'dense' | 'none'; }; /** @public */ export declare function SelectComponent(props: SelectProps): React.JSX.Element;