import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GustoEmbeddedError } from "../models/errors/gustoembeddederror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { UnprocessableEntityError } from "../models/errors/unprocessableentityerror.js"; import { GetEventsRequest, GetEventsResponse, GetEventsSecurity } from "../models/operations/getevents.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get all events * * @remarks * Fetch all events, going back up to 30 days, that your partner application has the required scopes for. Note that a partner does NOT have to have verified webhook subscriptions in order to utilize this endpoint. * * 📘 System Access Authentication * * This endpoint uses the [Bearer Auth scheme with the system-level access token in the HTTP Authorization header](https://docs.gusto.com/embedded-payroll/docs/system-access) * * scope: `events:read` */ export declare function eventsGet(client: GustoEmbeddedCore, security: GetEventsSecurity, request: GetEventsRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=eventsGet.d.ts.map