import { FilterDef } from './Filter/types'; export interface SortType { isAsc: boolean; id: string; toLabel(t: (key: string) => string): string; } export interface Field { id: string; toLabel(t: (key: string) => string): string; isVisible?: boolean; isIdentity?: boolean; sortable?: boolean; filter?: FilterDef; comparator?: (a: any, b: any, locale: string) => number; } export declare const K8sConditionStatusValues: readonly ["True", "False", "Unknown"]; export type K8sConditionStatus = (typeof K8sConditionStatusValues)[number];