import { GoogleFormsBaseAction } from '../googleforms-base.action.js'; import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base'; /** * Action to calculate aggregate statistics from Google Forms responses * * 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 Google Forms Response Statistics', * Params: [{ * Name: 'CompanyID', * Value: 'company-uuid-here' * }, { * Name: 'FormID', * Value: '1a2b3c4d5e' * }] * }); * ``` */ export declare class GetGoogleFormsStatisticsAction extends GoogleFormsBaseAction { get Description(): string; protected InternalRunAction(params: RunActionParams): Promise; /** * Calculate daily breakdown of responses */ private calculateDailyBreakdown; /** * Calculate hourly distribution of responses */ private calculateHourlyDistribution; get Params(): ActionParam[]; } //# sourceMappingURL=get-statistics.action.d.ts.map