import * as React from 'react'; export type ChipVariant = 'default' | 'blue' | 'sage' | 'amber' | 'danger' | 'lavender' | 'mint' | 'pink'; export interface ChipProps extends React.HTMLAttributes { variant?: ChipVariant; icon?: React.ReactNode; } declare function Chip({ variant, icon, className, children, ...props }: ChipProps): import("react/jsx-runtime").JSX.Element; export { Chip };