interface CheckboxOptions { type?: string; label?: string | HTMLElement; checked?: boolean; isImage?: boolean; imageHeight?: Number; checkedNode?: HTMLElement; uncheckedNode?: HTMLElement; customerAttributes?: { [key: string]: string }; onchange?: (this: HTMLInputElement, ev: Event) => any; } export function createCheckbox(opts?: CheckboxOptions): HTMLElement export function resolveCheckbox(container?: HTMLElement, legacy?: boolean): HTMLElement