import { SelectValue } from './PropsInterface'; import { Item } from './PropsInterface'; export declare function getHeightStyle(size?: string): string; export interface styledCommonProps extends SelectValue { disabled?: boolean; isMultiSelect?: boolean; size?: any; isSearch?: boolean; isFocus?: boolean; visibleTxt?: boolean; multiValueLength?: number; isShowDeleteIcon?: boolean; isActive?: boolean; } export interface PlaceHolderProps extends styledCommonProps { isShowPlaceHolder?: boolean; } export interface InputProps extends styledCommonProps { inputWidth?: number; propsValue?: string | Array; } export interface StyledProps extends styledCommonProps { inputValue?: string; error?: any; } export interface SelectIconWrapperProps { disabled?: boolean; } export interface ChosenProps { itemDisabled?: boolean; selectDisabled?: boolean; } export declare const PlaceHolder: import("styled-components").StyledComponent<"div", any, PlaceHolderProps, never>; export declare const Chosen: import("styled-components").StyledComponent<"li", any, ChosenProps, never>; export declare const IconWrapper: import("styled-components").StyledComponent<"span", any, ChosenProps, never>; export declare const InputWrapper: import("styled-components").StyledComponent<"li", any, styledCommonProps, never>; export declare const StyledInput: import("styled-components").StyledComponent<"input", any, InputProps, never>; export declare const SelectIconWrapper: import("styled-components").StyledComponent<"div", any, SelectIconWrapperProps, never>; export declare const StyledUl: import("styled-components").StyledComponent<"ul", any, styledCommonProps, never>; export declare const Wrapper: import("styled-components").StyledComponent<"div", any, StyledProps, never>; export declare const StyledSpan: import("styled-components").StyledComponent<"span", any, styledCommonProps, never>; export declare const StyledWrapper: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const StyledHiddenSpan: import("styled-components").StyledComponent<"span", any, {}, never>; export declare const StyledDeleteIcon: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const StyledTagSpan: import("styled-components").StyledComponent<"span", any, {}, never>;