import { IResponse, IContext } from '../../types'; import { AppDeploymentLogType } from '..'; export interface IGetAppDeploymentLogsApiResponse { historic_urls: string[]; live_url: string; } export interface IGetAppDeploymentLogsApiRequest { app_id: string; component_name: string; deployment_id: string; follow?: boolean; pod_connection_timeout?: string; type?: AppDeploymentLogType | string; } export type GetAppDeploymentLogsResponse = IResponse; export declare const getAppDeploymentLogs: ({ httpClient, }: IContext) => ({ app_id, component_name, deployment_id, follow, pod_connection_timeout, type, }: IGetAppDeploymentLogsApiRequest) => Promise>;