UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

11 lines (10 loc) 549 B
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;