///
declare const StyledSelect: import("styled-components").StyledComponent void) | undefined;
readonly onOptionChange?: ((value: string | string[] | null) => void) | undefined;
readonly value?: string | string[] | null | undefined;
readonly variant?: "primary" | "neutral" | undefined;
} & Pick, "div">, "aspectSize" | "label" | "name" | "defaultValue" | "placeholder" | "value" | "isDisabled" | "variant" | "isError" | "isSuccess" | "hasRemoveButton" | "helperText" | "leftContent" | "labelPosition" | "inputProps" | "areExternalOptionsValid" | "emptyResultsContent" | "isAutocomplete" | "isExternalFiltered" | "isMultiSelect" | "onInputChange" | "onOptionChange"> & {
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, never>;
export default StyledSelect;