import { ThemeTypes } from '@viasat/beam-shared/utils/constants'; import * as React from 'react'; export interface CheckboxProps extends React.ComponentPropsWithRef<'input'> { /** * Specify the text for the label */ label?: React.ReactNode; /** * Specify error text and display error state of a Checkbox */ error?: boolean; /** * Specify if Checkbox displays in a read-only state */ readOnly?: boolean; /** * Specify if Checkbox displays in a disabled state */ disabled?: boolean; /** * Specify if Checkbox displays in an indeterminate state */ indeterminate?: boolean; /** * Specify the theme of the HelperText. By default it inherits the theme from the parent */ theme?: ThemeTypes; } export declare const Checkbox: React.ForwardRefExoticComponent & React.RefAttributes>; export default Checkbox;