import { type DeployApiClientOptions } from "./common/types.js"; export type LogFileResponse = { buffer: Buffer; contentType?: string; }; export declare const fetchLogList: (options: DeployApiClientOptions, environmentId: string, latest?: boolean, organizationId?: string) => Promise; export declare const fetchLogFile: (options: DeployApiClientOptions, environmentId: string, filename: string, download?: boolean, organizationId?: string) => Promise;