import * as react_jsx_runtime from 'react/jsx-runtime';

interface LozengeProps {
    value: string;
    size: 'xs' | 'sm' | 'md' | 'lg';
    color: 'default' | 'purple' | 'blue' | 'green' | 'yellow' | 'red';
    variant: 'solid' | 'light';
}
declare function Lozenge(props: LozengeProps): react_jsx_runtime.JSX.Element;

export { Lozenge, LozengeProps };
