import React from 'react'; import { InputAlertObj } from './input.model'; export interface ToggleProps { id?: string; name?: string; toggleSize: 'sm' | 'md' | 'lg' | undefined; value?: string | number; alert?: InputAlertObj; label: string; hasError?: boolean; labelPosition?: 'top' | 'right'; labelCenterAlign?: boolean; role?: string; isChecked?: boolean; isDisabled?: boolean; isIndeterminate?: boolean; isFocusable?: boolean; isReadOnly?: boolean; isControlled?: boolean; isInvalid?: boolean; defaultChecked?: boolean; fontSize?: string; colorLabel?: string; onChange?: (event: React.ChangeEvent) => void; onBlur?: (event: React.FocusEvent) => void; onFocus?: (event: React.FocusEvent) => void; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-invalid'?: boolean | undefined; 'aria-describedby'?: string; tabIndex?: number; } //# sourceMappingURL=toggle.d.ts.map