import type { MinimalFeature, TranscriptFeat } from './types';
export declare function isUcscTranscript({ thickStart, blockCount, strand, }: {
    thickStart?: number;
    blockCount?: number;
    strand?: number;
}): boolean | 0 | undefined;
export declare function generateUcscTranscript(data: TranscriptFeat): {
    uniqueId: string;
    strand: number;
    type: string;
    refName: string;
    subfeatures: MinimalFeature[];
    start: number;
    end: number;
};
