/** * synap infra * * Infrastructure management via Dokploy — view servers, trigger deploys, * tail logs, and sync server state into Synap entities. * * synap infra — overview: servers + services status * synap infra status — same as above * synap infra deploy — trigger a redeploy for a named app * synap infra logs — tail logs for a service * synap infra sync — pull Dokploy state into Synap entities * synap infra open — open Dokploy dashboard in browser */ export declare function infraStatus(): Promise; export declare function infraDeploy(appName: string): Promise; export declare function infraLogs(appName: string, opts: { lines?: number; follow?: boolean; }): Promise; export declare function infraSync(podUrl: string, apiKey: string): Promise; export declare function infraOpen(): void;