import React from 'react'; import { DefaultAttributes } from '../types'; export declare type ToggleProps = DefaultAttributes & { checked?: boolean; disabled?: boolean; id?: string; onChange: (event: React.ChangeEvent) => void; value: string | number; label?: string; name: string; }; export declare type LabelProps = { disabled?: boolean; };