import React from 'react'; import { CELL_STYLE_ENUM } from './enum'; export declare const getLabel: (fields: any, option: any) => any; export declare enum LINK_TYPE_ENUM { BUG_LINK = "BUG_LINK", EG_LINK = "EG_LINK", ISSUE_LINK = "ISSUE_LINK", PLAN_LINK = "PLAN_LINK", REQUIRE_LINK = "REQUIRE_LINK" } export declare const statusStyle: any; export declare const priorityStyle: any; export interface CssStyleItem { color?: string; icon?: string; label?: string; style?: CELL_STYLE_ENUM; } export declare const getCssStyle: ({ style, color }: CssStyleItem) => React.CSSProperties;