import { CodeFragment } from '../CodeFragment';
import { CodeMetadata } from '../CodeMetadata';
import { GroupType } from '../parser/timer.visitor';
export declare class LapFragment implements CodeFragment {
    group: GroupType;
    image: string;
    meta?: CodeMetadata | undefined;
    constructor(group: GroupType, image: string, meta?: CodeMetadata | undefined);
    type: string;
    applyToMetric(_metric: import('../RuntimeMetric').RuntimeMetric, _rounds?: number): void;
}
