export type GwsResponse = { success: boolean; data?: T; error?: string; }; /** * Executes a GWS CLI command, preferring a globally installed binary, * falling back to npx if not found. * * @param command - The GWS command string (e.g., 'drive files list --params "..."') * @returns Parsed JSON response from GWS */ export declare function runGwsCommand(command: string): Promise>; /** * Interactive check to ensure GWS is installed and authenticated. */ export declare function checkGwsReady(): Promise; //# sourceMappingURL=gws-runner.d.ts.map