import { type AppName } from "../../abstractions/types.js"; export type IExportStackParams = { app: AppName; }; export interface IStackExport { [key: string]: any; } export type IExportStackResult = TExport | null; export interface IExportStack { execute(params: IExportStackParams): Promise>; } export declare const ExportStack: import("@webiny/di").Abstraction; export declare namespace ExportStack { type Interface = IExportStack; type Params = IExportStackParams; type Result = IExportStackResult; type StackExport = IStackExport; }