import { type FormElements, type FormUtils } from '@lg-tools/test-harnesses'; type CheckboxElements = Omit, 'getErrorMessage'>; type CheckboxUtils = Pick, 'getInputValue' | 'isDisabled'>; export type CheckboxTestUtilsReturnType = CheckboxElements & CheckboxUtils & { /** * Returns whether ot not the input is indeterminate. */ isIndeterminate: () => boolean; }; export {}; //# sourceMappingURL=getTestUtils.types.d.ts.map