import { ListLogsGateway, ListLogsUseCase as UseCaseAbstraction, type IListLogsInput, type IListLogsOutput } from "./abstractions.js"; declare class ListLogsUseCaseImpl implements UseCaseAbstraction.Interface { private readonly gateway; constructor(gateway: ListLogsGateway.Interface); execute(input: IListLogsInput): Promise; } export declare const ListLogsUseCase: typeof ListLogsUseCaseImpl & { __abstraction: import("@webiny/di").Abstraction; }; export {};