import { type SpiritTextFieldBaseProps, type TextFieldBaseProps } from '../../types'; export interface TextFieldBaseStyles { classProps: { root: string; label: string; input: string; helperText: string; validationText: string; passwordToggle: string; passwordToggleButton: string; passwordToggleIcon: string; }; props: Omit; } export declare function useTextFieldBaseStyleProps(props: Omit): TextFieldBaseStyles;