import type { Feature, Region } from '@jbrowse/core/util';
import type { BaseLayout } from '@jbrowse/core/util/layouts';
export interface LayoutRecord {
    feature: Feature;
    leftPx: number;
    rightPx: number;
    topPx: number;
    heightPx: number;
}
export declare function layoutFeature({ feature, layout, bpPerPx, region, showSoftClip, heightPx, displayMode, }: {
    feature: Feature;
    layout: BaseLayout<Feature>;
    bpPerPx: number;
    region: Region;
    showSoftClip?: boolean;
    heightPx: number;
    displayMode: string;
}): LayoutRecord | null;
