import { type SpiritToggleProps } from '../../types'; export interface ToggleStyles { classProps: { root: string; label: string; text: string; helperText: string; input: string; validationText: string; }; props: T; } export declare function useToggleStyleProps(props: SpiritToggleProps): ToggleStyles;