import { MIXED_BOOLEAN } from '@create-figma-plugin/utilities'; import { ComponentChildren } from 'preact'; import { EventHandler } from '../../types/event-handler.js'; import { FocusableComponentProps } from '../../types/focusable-component-props.js'; export interface CheckboxProps extends FocusableComponentProps { children: ComponentChildren; disabled?: boolean; onChange?: EventHandler.onChange; onValueChange?: EventHandler.onValueChange; value: typeof MIXED_BOOLEAN | boolean; } export declare const Checkbox: import("preact").FunctionalComponent, "ref"> & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=checkbox.d.ts.map