/// import { SelectOptionProps } from './Option'; import { SelectProps } from './types'; declare const NamespacedSelect: import("react").NamedExoticComponent>, "defaultValue"> & { readonly areExternalOptionsValid?: boolean | undefined; readonly aspectSize?: "m" | "s" | "l" | undefined; readonly defaultValue?: string | string[] | undefined; readonly emptyResultsContent?: import("react").ReactNode; readonly isAutocomplete?: boolean | undefined; readonly isExternalFiltered?: boolean | undefined; readonly isMultiSelect?: boolean | undefined; readonly onInputChange?: ((inputValue: string) => void) | undefined; readonly onOptionChange?: ((value: string | string[] | null) => void) | undefined; readonly value?: string | string[] | null | undefined; readonly variant?: "primary" | "neutral" | undefined; } & Pick> & { readonly type: import("./types").SelectComponent; } & { Option: import("react").MemoExoticComponent; }; export type { SelectProps, SelectOptionProps }; export default NamespacedSelect;