import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace'; import { ChangeEventHandler } from 'react'; import { CSSObject } from '@emotion/react'; import { LabelProps } from './Label/Label.types.cjs'; type SelectInputProps = { label?: string; labelProps?: Omit, "text">; value?: string; onChange?: ChangeEventHandler; placeholder?: string; isDisabled?: boolean; sx?: CSSObject; }; declare const SelectInput: ({ value, placeholder, label, labelProps, onChange, isDisabled, sx, }: SelectInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element; type SelectMultiInputProps = { values?: string[]; setValues?: (values: string[]) => void; } & Omit; declare const SelectMultiInput: ({ values, placeholder, setValues, ...restProps }: SelectMultiInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element; export { SelectInput as S, SelectMultiInput as a, SelectInputProps as b, SelectMultiInputProps as c };