export interface FrequencyTableEntry { count: number; GT: string; genotype: string | undefined; } export type FrequencyTable = Record; export interface VariantSampleGridRow { sample: string; id: string; GT: string; [key: string]: string; } export type InfoFields = Record; export type Filters = Record; export interface VariantFieldDescriptions { FORMAT?: Record; }