import React from 'react'; export interface ToggleProps { checked?: boolean; label?: string; onChange: () => void; } /** * The `` component is usually wrapped in a `container` element (with a fixed `width` style for example). * The toggle and label are spread in the container (`space-between`) from edge to edge. */ export declare const Toggle: React.FC; //# sourceMappingURL=index.d.ts.map