import * as React from 'react'; export interface ToggleProps { /** Specifies the default value of the toggle */ checked?: boolean; /** Specifies if the toggle is disabled or not */ disabled?: boolean; /** The label */ children: React.ReactNode | React.ReactNode[]; /** Name of the toggle */ name: string; /** The toggle toggle event handler */ onChange: Function; /** Size of the toggle */ size?: 'regular' | 'large'; /** The value of the toggle */ value?: string; } declare const Toggle: ({ checked, disabled, children, name, onChange, size, value, ...other }: ToggleProps) => JSX.Element; export default Toggle;