import { ToggleGroup } from 'radix-ui'; import type { ComponentPropsWithoutRef } from 'react'; declare const ToggleRoot: import("react").ForwardRefExoticComponent<(ToggleGroup.ToggleGroupSingleProps | ToggleGroup.ToggleGroupMultipleProps) & import("react").RefAttributes>; type FeedbackValueT = 'good' | 'bad' | undefined; declare const FeedbackValue: { readonly good: "good"; readonly bad: "bad"; readonly none: undefined; }; type FeedbackChipProps = { value: FeedbackValueT; onValueChange: (value: FeedbackValueT) => void; itemLabels: { good?: string; bad?: string; }; } & Partial, 'type' | 'value' | 'onValueChange'>>; declare const FeedbackChip: ({ value, onValueChange, itemLabels }: FeedbackChipProps) => import("react/jsx-runtime").JSX.Element; export type { FeedbackValueT }; export { FeedbackChip, FeedbackValue };