import HtmlNode from '../Extension/HtmlNode'; interface InputCheckboxProps { readonly title: string; readonly value: string; readonly name: string; readonly description?: string; readonly meta?: string; readonly id: string; checked: boolean; readonly onClick?: (e: Event) => void; readonly append?: boolean; disabled?: boolean; } declare class InputCheckbox extends HtmlNode { private readonly props; constructor(element: HTMLElement | null, props: InputCheckboxProps); checked(checked: boolean): void; disabled(disabled: boolean): void; render(): void; } export default InputCheckbox;