export interface Descriptions {
    INFO?: {
        ANN?: {
            Description?: string;
        };
        CSQ?: {
            Description?: string;
        };
    };
}
export interface ReducedFeature {
    INFO?: {
        ANN?: string[];
        CSQ?: string[];
    };
}
