import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Details of the access token provisioned for a company. */ export type CompanyAccessToken = { /** * The number of seconds until the access token expires. */ expiresIn: number; /** * The access token for the company. */ accessToken: string; /** * The type of token. */ tokenType: string; }; /** @internal */ export declare const CompanyAccessToken$inboundSchema: z.ZodType; export declare function companyAccessTokenFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=companyaccesstoken.d.ts.map