import React from 'react'; export type ICheckboxContext = Omit, 'htmlProps'>; export declare const CheckboxContext: React.Context<{}>; export declare function useCheckboxProvider(props: any): { isRequired: boolean; isInvalid: boolean; isReadOnly: boolean; isDisabled: boolean; hasFeedbackText: boolean; setHasFeedbackText: React.Dispatch>; hasHelpText: boolean; setHasHelpText: React.Dispatch>; id: any; labelId: string; feedbackId: string; helpTextId: string; htmlProps: any; }; export declare function useCheckbox(props: any): any; export declare const useCheckboxContext: () => ICheckboxContext; //# sourceMappingURL=context.d.ts.map