export interface PriorityChipProps { /** @deprecated Use `priority` instead. */ variant?: 'success' | 'warning' | 'error' | 'info'; priority?: 'high' | 'medium' | 'low'; isSelected?: boolean; label: string; className?: string; labelClassName?: string; contentClassName?: string; } declare const PriorityChip: (props: PriorityChipProps) => import("react/jsx-runtime").JSX.Element; export default PriorityChip;