@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
8 lines (7 loc) • 407 B
TypeScript
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface CheckboxControlBaseProps extends PolymorphicProps {
}
export interface CheckboxControlProps extends HTMLProps<'div'>, CheckboxControlBaseProps {
}
export declare const CheckboxControl: ForwardRefExoticComponent<CheckboxControlProps & RefAttributes<HTMLDivElement>>;