interface ILogsConfig { lambdaFunction: string; inputFlags?: { start?: string; end?: string; levels?: string[]; removeHeader?: boolean; }; } export declare class LogsController { /** * Gets the logs of the passed function * @param {ILogsConfig} - lambda function and flags * @returns {Promise} * @memberof LogsController */ static getLogs({ lambdaFunction, inputFlags, }: ILogsConfig): Promise; } export {};