export declare const getGuidelinesWithHighlights: <T extends {
    active?: boolean;
    key: string;
    show?: boolean;
}>(gap: number, maxGap: number, activeGuidelineKeys: string[], guidelines: T[]) => T[];
