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<CheckboxProps, 'inputProps'> & {
    state: InputCheckboxStates;
    inputProps?: Partial<InputProps>;
};
declare const CheckboxStateWrapper: FC<CheckboxStateWrapperProps>;
export default CheckboxStateWrapper;
