UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

8 lines 676 B
import React from 'react'; import type { ComponentProps } from 'react'; declare const DefaultCheckboxGroup: React.MemoExoticComponent<React.ForwardRefExoticComponent<import("antd/lib/checkbox").CheckboxGroupProps & React.RefAttributes<HTMLDivElement>>>; type DefaultCheckboxGroupProps = ComponentProps<typeof DefaultCheckboxGroup>; export type CheckboxGroupProps = Pick<DefaultCheckboxGroupProps, 'children' | 'className' | 'name' | 'disabled' | 'onChange' | 'defaultValue' | 'value'>; declare const CheckboxGroup: React.ForwardRefExoticComponent<CheckboxGroupProps & React.RefAttributes<HTMLDivElement>>; export { CheckboxGroup, }; //# sourceMappingURL=checkboxGroup.d.ts.map