import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import { type CheckboxProps } from '../../functional-components/inputs/Checkbox'; import { type InputProps } from '../../functional-components/inputs/Input'; import { type InputCheckboxStates } from '../../schema'; export type CheckboxStateWrapperProps = Omit & { state: InputCheckboxStates; inputProps?: Partial; }; declare const CheckboxStateWrapper: FC; export default CheckboxStateWrapper;