import { type Validation } from '../../types'; export interface UseFieldGroupStyleProps extends Validation { isFluid?: boolean; } export interface UseFieldGroupStyleReturn { classProps: { root: string; label: string; fields: string; validationText: string; helperText: string; }; } export declare const useFieldGroupStyleProps: ({ isFluid, isRequired, validationState, }: UseFieldGroupStyleProps) => UseFieldGroupStyleReturn;