import { CSSObject } from '@emotion/react'; import { Theme } from '../../../Identity'; export interface BaseSelectStylesParams { theme: Theme; markInvalid?: boolean; menuPosition?: 'absolute' | 'relative'; controlCSS?: CSSObject; containerCSS?: CSSObject; } export declare const baseIndicatorSeparatorStyles: () => CSSObject; export declare const baseContainerStyles: (containerCSS: CSSObject) => CSSObject; export declare const baseControlStyles: ({ theme, isDisabled, markInvalid, selectProps, controlCSS, }: { theme: Theme; isDisabled: boolean; markInvalid: boolean; selectProps: { isDisabled: boolean; menuIsOpen: boolean; }; controlCSS: CSSObject; }) => CSSObject; export declare const baseDropdownIndicatorStyles: ({ theme, selectProps, }: { theme: Theme; selectProps: { isDisabled: boolean; }; }) => CSSObject; export declare const baseMenuStyles: ({ theme, menuPosition, }: { theme: Theme; menuPosition: "absolute" | "relative"; }) => CSSObject; export declare const baseMenuListStyles: () => CSSObject; export declare const baseOptionStyles: ({ theme, isDisabled, isFocused, isSelected, isMulti, }: { theme: Theme; isDisabled: boolean; isFocused: boolean; isSelected: boolean; isMulti: boolean; }) => CSSObject; export declare const baseSingleValueStyles: ({ theme, selectProps, }: { theme: Theme; selectProps: { isDisabled: boolean; }; }) => CSSObject; //# sourceMappingURL=BaseSelect.styles.d.ts.map