import { RefProp } from "@suid/system/createRef"; import { ChangeEvent } from "@suid/types"; export interface FormControlLabelState { checked?: boolean; name?: string; onChange?: (event: ChangeEvent, checked: boolean) => void; value?: any; inputRef?: RefProp; disabled?: boolean; setDisabled: (state: boolean) => void; } /** * @ignore - internal component. */ declare const FormControlLabelContext: import("solid-js").Context; export default FormControlLabelContext; //# sourceMappingURL=FormControlLabelContext.d.ts.map