export declare class Performance { protected id: string; protected startedAt: number; protected shouldLog: boolean; constructor(id: string, shouldLog?: boolean); finish(): number | undefined; }