import { GoogleFormsBaseAction } from '../googleforms-base.action.js'; import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base'; /** * Action to retrieve a specific response from Google Forms by response ID * * Security: This action uses secure credential lookup via Company Integrations. * API credentials are retrieved from environment variables or the database based on CompanyID. * * @example * ```typescript * await runAction({ * ActionName: 'Get Single Google Forms Response', * Params: [{ * Name: 'CompanyID', * Value: 'company-uuid-here' * }, { * Name: 'FormID', * Value: 'abc123xyz' * }, { * Name: 'ResponseID', * Value: 'ACYDBNhVXdW3lFGH...' * }] * }); * ``` */ export declare class GetSingleGoogleFormsResponseAction extends GoogleFormsBaseAction { get Description(): string; protected InternalRunAction(params: RunActionParams): Promise; get Params(): ActionParam[]; } //# sourceMappingURL=get-single-response.action.d.ts.map