import { GoogleFormsBaseAction } from '../googleforms-base.action.js'; import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base'; /** * Action to export Google Forms responses as CSV format * * 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: 'Export Google Forms Responses to CSV', * Params: [{ * Name: 'CompanyID', * Value: 'company-uuid-here' * }, { * Name: 'FormID', * Value: '1a2b3c4d5e6f7g8h9i0j' * }, { * Name: 'IncludeMetadata', * Value: true * }] * }); * ``` */ export declare class ExportGoogleFormsCSVAction extends GoogleFormsBaseAction { get Description(): string; protected InternalRunAction(params: RunActionParams): Promise; get Params(): ActionParam[]; } //# sourceMappingURL=export-csv.action.d.ts.map