import { default as React } from 'react'; import { Flex } from '../flex'; import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group'; export declare const rootClassName = "teddy-chip"; /** ------------------------------------------------------------------------------------------------- * Root * -----------------------------------------------------------------------------------------------*/ export type Variant = 'choice' | 'filter'; export type RootProps = React.ComponentPropsWithoutRef & React.ComponentPropsWithoutRef & { variant?: Variant; fullWidth?: boolean; }; export type RootContextValue = { variant: Variant; fullWidth?: boolean; }; export declare const RootContext: React.Context; /** */ export declare const Root: React.ForwardRefExoticComponent>;