import { ComponentPropsWithoutRef } from 'react'; declare type LabelV2Attributes = ComponentPropsWithoutRef<'div'>; export interface LabelV2Props extends Omit { /** * To specify background color of Label */ color?: 'orange' | 'red' | 'blue' | 'green' | 'teal' | 'grey'; /** * To set the type of label */ variant?: 'highlight' | 'highlightImage' | 'highlightAlternate' | 'general'; } export {};