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 {};
