import type { GraphQLClient } from 'graphql-request'; export interface DeployMarker { id: string; revision: string; shortRevision: string; createdAt: string; user: string | null; exceptionCount: number; } export type TimeframeEnum = 'R1H' | 'R4H' | 'R8H' | 'R12H' | 'R24H' | 'R48H' | 'R7D' | 'R30D'; export declare function getDeployMarkers(graphqlClient: GraphQLClient, appId: string, timeframe?: TimeframeEnum, limit?: number): Promise; //# sourceMappingURL=deploy-markers.d.ts.map