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