import type VCFParser from '@gmod/vcf';
import type { Variant } from '@gmod/vcf';
import type { Feature } from '@jbrowse/core/util';
export default class VCFFeature implements Feature {
    private variant;
    private parser;
    private data;
    private _id;
    constructor(args: {
        variant: Variant;
        parser: VCFParser;
        id: string;
    });
    get(field: string): any;
    parent(): undefined;
    children(): undefined;
    id(): string;
    toJSON(): any;
}
