import React from 'react'; export interface ToggleProps extends Omit, 'type' | 'onChange'> { label?: string; description?: string; onChange?: (checked: boolean) => void; animate?: boolean; } export declare const Toggle: React.ForwardRefExoticComponent>;