import type { StyleXStyles } from '@stylexjs/stylex'; export interface IToggleSwitch { size: 'small' | 'medium' | 'large'; checked: boolean; labelLeft?: string; labelRight?: string; disabled?: boolean; setChecked?: (event: any) => void; style?: IStyles; error?: boolean; errorMessage?: string; helpText?: string; ariaDescribedBy?: string; } type IStyles = StyleXStyles<{ margin?: string; padding?: string; }>; export {};