import type { AutoSqlSchema } from './util.ts';
export default class BED {
    autoSql: AutoSqlSchema;
    private attemptDefaultBed?;
    constructor(opts?: {
        autoSql?: string;
        type?: string;
    });
    parseLine(line: string | string[], options?: {
        uniqueId?: string;
    }): Record<string, string | number | string[] | number[]>;
}
