import * as React from 'react'; import '@vtmn/css-checkbox/dist/index-with-vars.css'; export interface VtmnCheckboxProps extends React.ComponentPropsWithoutRef<'input'> { /** * The id of the checkbox. * @type {string} */ identifier: string; /** * The label of the checkbox. * @type {string} * @defaultValue undefined */ labelText?: string; /** * The checked state of the checkbox. * @type {boolean} * @defaultValue false */ checked?: boolean; /** * The default checked state of the checkbox (for uncontrolled mode combined with a "name" attribute). * @type {boolean} * @defaultValue undefined */ defaultChecked?: boolean; /** * The disabled state of the checkbox. * @type {boolean} * @defaultValue false */ disabled?: boolean; } export declare const VtmnCheckbox: React.ForwardRefExoticComponent>; declare const MemoVtmnCheckbox: React.MemoExoticComponent>>; export default MemoVtmnCheckbox;