import { type SizesDictionaryType, type Validation } from '../../types'; export interface UseSelectStyleProps extends Validation { isDisabled?: boolean; isFluid?: boolean; isLabelHidden?: boolean; size?: SizesDictionaryType; } export interface UseSelectStyleReturn { classProps: { root: string; label: string; container: string; input: string; icon: string; validationText: string; helperText: string; }; } export declare const useSelectStyleProps: ({ isDisabled, isFluid, isLabelHidden, isRequired, size, validationState, }: UseSelectStyleProps) => UseSelectStyleReturn;