@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
11 lines (10 loc) • 569 B
TypeScript
import React from 'react';
import type { ICheckboxWithLabelUncontrolled } from './types/checkboxWithLabel';
/**
* @deprecated This component has been deprecated and will be removed in the next MAJOR release. Will include all this on the CheckBox component
*/
declare const CheckboxWithLabelUncontrolled: <V extends string | unknown>(props: ICheckboxWithLabelUncontrolled<V> & {
ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => JSX.Element;
export { CheckboxWithLabelUncontrolled };
export { CheckboxWithLabelUncontrolled as CheckboxWithLabel };