import { InputHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { RValueOrKey } from '../common/key';
interface InputProps {
/** @ignore */
disabled?: InputHTMLAttributes['disabled'];
/** @ignore */
form?: InputHTMLAttributes['form'];
/** @ignore */
name?: InputHTMLAttributes['name'];
/** @ignore */
required?: InputHTMLAttributes['required'];
}
type __VLS_Props = {
/** Checked state of the checkbox. */
checked?: boolean;
/**
* [Indeterminate state](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#indeterminate_state_checkboxes) of the checkbox.
*/
indeterminate?: boolean;
/**
* Item label when checked and displayed, e.g. in Select.
* @default undefined `startCase(keyOf(value))` if value exists.
*/
label?: string;
/**
* Item key or data when checked in the CheckboxGroup.
* See [List Rendering]{@link https://roughness.vercel.app/guide/specs#list-rendering}.
*/
value?: RValueOrKey;
} & InputProps;
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<{
/** Label of the checkbox. */
default?: (props: {}) => any;
}> & {
/** Label of the checkbox. */
default?: (props: {}) => any;
};
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType;
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
"update:checked": (value: boolean) => any;
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
"onUpdate:checked"?: ((value: boolean) => any) | undefined;
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots;
export default _default;
type __VLS_WithTemplateSlots = T & {
new (): {
$slots: S;
};
};