import * as React from 'react'; import type { Checkbox as BaseCheckbox, StatefulCheckbox as BaseStatefulCheckbox } from '../baseui/checkbox'; import { CheckboxProps, StatefulCheckboxProps } from './types'; declare type BaseuiAdaptedProps = React.ComponentProps | React.ComponentProps; declare type SpacewebProps = CheckboxProps | StatefulCheckboxProps; export default function useCheckboxAdapter(props: SpacewebProps): BaseuiAdaptedProps; export {};