export interface SwitchClasses { /** Class name applied to the root element. */ root: string; /** State class applied to the root `checked` class. */ checked: string; /** State class applied to the root disabled class. */ disabled: string; /** Class name applied to the action element. */ action: string; /** Class name applied to the input element. */ input: string; /** Class name applied to the input element. */ thumb: string; /** Class name applied to the track element. */ track: string; /** State class applied to the root element if the switch has visible focus */ focusVisible: string; /** Class name applied to the root element if `size="small"`. */ sizeSmall: string; /** Class name applied to the root element if `size="medium"`. */ sizeMedium: string; /** Class name applied to the root element if `size="large"`. */ sizeLarge: string; /** Class name applied to the startDecorator element. */ startDecorator: string; /** Class name applied to the endDecorator element. */ endDecorator: string; /** Class name applied to the thumb `withIcon` class. */ withIcon: string; } export type SwitchClassKey = keyof SwitchClasses; export declare function getSwitchUtilityClass(slot: string): string; declare const switchClasses: SwitchClasses; export default switchClasses;