import type { Feature, SimpleFeatureSerialized } from '@jbrowse/core/util/simpleFeature';
export default class NCListFeature implements Feature {
    private ncFeature;
    private parentHandle?;
    private uniqueId;
    constructor(ncFeature: any, parent?: Feature, id?: string);
    set(): void;
    jb2TagToJb1Tag(tag: string): string;
    jb1TagToJb2Tag(tag: string): string;
    get(attrName: string): any;
    tags(): string[];
    id(): string;
    parent(): Feature | undefined;
    children(): Feature[] | undefined;
    toJSON(): SimpleFeatureSerialized;
}
