import { Checkbox as ICheckbox } from "../response.js"; import { ListenerName } from "../names.js"; import { Component } from "../../components/component.js"; export { ICheckbox }; export declare class CheckboxBaseImpl extends Component { /** * Whether the checkbox can have 3 states. */ tristate(tristate: ICheckbox['tristate']): this; onPressed(listener: ListenerName, props?: { [k: string]: unknown; }): this; style(style: ICheckbox['style']): this; materialTapTargetSize(materialTapTargetSize: ICheckbox['materialTapTargetSize']): this; /** * Whether the checkbox is focused initially. */ autofocus(autofocus: ICheckbox['autofocus']): this; /** * The name that will be used in the form. */ name(name: ICheckbox['name']): this; }