import { FC, MouseEventHandler } from 'react'; import './Tumbler-Label.css'; declare type TumblerLabelProps = { disabled?: boolean; htmlFor: string; id: string; onClick: MouseEventHandler; }; export declare const TumblerLabel: FC; export {};