import { ContainerProps, IndicatorsContainerProps, ValueContainerProps } from './components/containers'; import { ControlProps } from './components/Control'; import { GroupHeadingProps, GroupProps } from './components/Group'; import { ClearIndicatorProps, DropdownIndicatorProps, IndicatorSeparatorProps, LoadingIndicatorProps } from './components/indicators'; import { InputProps } from './components/Input'; import { PlaceholderProps } from './components/Placeholder'; import { OptionProps } from './components/Option'; import { NoticeProps, MenuProps, MenuListProps, PortalStyleArgs } from './components/Menu'; import { SingleValueProps } from './components/SingleValue'; import { MultiValueProps } from './components/MultiValue'; import { CSSObjectWithLabel, GroupBase } from './types'; export interface StylesProps> { clearIndicator: ClearIndicatorProps; container: ContainerProps; control: ControlProps; dropdownIndicator: DropdownIndicatorProps; group: GroupProps; groupHeading: GroupHeadingProps; indicatorsContainer: IndicatorsContainerProps; indicatorSeparator: IndicatorSeparatorProps; input: InputProps; loadingIndicator: LoadingIndicatorProps; loadingMessage: NoticeProps; menu: MenuProps; menuList: MenuListProps; menuPortal: PortalStyleArgs; multiValue: MultiValueProps; multiValueLabel: MultiValueProps; multiValueRemove: MultiValueProps; noOptionsMessage: NoticeProps; option: OptionProps; placeholder: PlaceholderProps; singleValue: SingleValueProps; valueContainer: ValueContainerProps; } export declare const defaultStyles: { [K in keyof StylesProps]: (props: StylesProps>[K], unstyled: boolean) => CSSObjectWithLabel; }; export declare type StylesConfig