import { type StdioOptions } from 'node:child_process'; export type PlanObject = Record; export declare function execSync(cmd: any, stdio?: StdioOptions, cwd?: string): string; export declare function log(...args: unknown[]): void; export declare const logger: import("@lzwme/fe-utils").NLogger;