@serendie/ui
Version:
Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric
9 lines (8 loc) • 722 B
TypeScript
import { CheckboxRootProps, RadioGroupItemProps } from '@ark-ui/react';
export declare const ChoiceBoxStyle: import('../../../styled-system/types').SlotRecipeRuntimeFn<"root" | "radioItem" | "radioCheckedIcon" | "radioUncheckedIcon" | "checkboxItem" | "checkboxCheckedIcon" | "checkboxUncheckedIcon", import('../../../styled-system/types').SlotRecipeVariantRecord<"root" | "radioItem" | "radioCheckedIcon" | "radioUncheckedIcon" | "checkboxItem" | "checkboxCheckedIcon" | "checkboxUncheckedIcon">>;
type ChoiceBoxBaseProps = {
type: "radio" | "checkbox";
};
export type ChoiceBoxProps = ChoiceBoxBaseProps & RadioGroupItemProps & CheckboxRootProps;
export declare const ChoiceBox: React.FC<ChoiceBoxProps>;
export {};