import React from 'react'; import { SelectCommonProps, SelectOption } from './Select.types'; export declare const useSelectCommon: ({ className, defaultValue, disabled, native, onChange, options: optionsProp, readOnly, style, value: valueProp, variant, width }: { native: boolean; } & SelectCommonProps) => { isEnabled: boolean; options: SelectOption[]; value: T; setValue: (newValue: React.SetStateAction) => void; wrapperProps: React.HTMLAttributes; DropdownButton: JSX.Element; Wrapper: import("styled-components").StyledComponent<"div", any, Pick & { $disabled?: boolean | undefined; native?: boolean | undefined; variant?: import("./Select.types").SelectVariants | undefined; } & import("../types").CommonThemeProps, never>; }; //# sourceMappingURL=useSelectCommon.d.ts.map