import * as React from 'react'; import '@vtmn/css-toggle/dist/index-with-vars.css'; import { VtmnToggleSize } from './types'; export interface VtmnToggleProps extends Omit, 'size'> { /** * The id of the toggle. * @type {string} */ identifier: string; /** * The label of the toggle. * @type {string} * @defaultValue undefined */ labelText?: string; /** * The size of the toggle. * @defaultValue 'medium' */ size?: VtmnToggleSize; /** * The checked state of the toggle. * @type {boolean} * @defaultValue false */ checked?: boolean; /** * The disabled state of the toggle. * @type {boolean} * @defaultValue false */ disabled?: boolean; } export declare const VtmnToggle: React.ForwardRefExoticComponent>; declare const MemoVtmnToggle: React.MemoExoticComponent>>; export default MemoVtmnToggle;