siegel
Version:
Web application development ecosystem
10 lines (9 loc) • 442 B
TypeScript
import type { Component, Props, WithIconRootAttrs, WithLabelRootAttrs, CheckboxRootAttrs } from './types';
declare const componentID = "-ui-checkbox";
declare const Checkbox: import("../_internals/types").CoreUIComponent<Props, NonNullableProps<{
theme: Props["theme"];
value: Props["value"];
}>>;
export default Checkbox;
export { componentID };
export { Component, Props, WithIconRootAttrs, WithLabelRootAttrs, CheckboxRootAttrs };