interface CheckboxContextData { ownerID: string; labelID: string; indicatorID: string; descriptionID: string; } export declare const CheckboxContext: import("solid-js").Context; /** * Reads the nearest `Checkbox`'s internal context, which holds the generated * ids for its label, description and indicator. Throws when called outside a * `Checkbox`. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/checkbox.md} */ export declare function useCheckboxContext(componentName: string): CheckboxContextData; export {}; //# sourceMappingURL=CheckboxContext.d.ts.map