import { MoovCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { MoovError } from "../models/errors/mooverror.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Moov accounts associated with businesses require information regarding individuals who represent the business. * You can provide this information by creating a representative. Each account is allowed a maximum of 7 representatives. * Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/representatives.write` scope. */ export declare function representativesCreate(client: MoovCore, request: operations.CreateRepresentativeRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=representativesCreate.d.ts.map