import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RequestsTo = { name?: string | undefined; pcid?: string | undefined; requestedAt?: number | undefined; requestedString?: string | undefined; scopes?: Array | undefined; }; /** @internal */ export declare const RequestsTo$inboundSchema: z.ZodType; /** @internal */ export type RequestsTo$Outbound = { name?: string | undefined; pcid?: string | undefined; requestedAt?: number | undefined; requestedString?: string | undefined; scopes?: Array | undefined; }; /** @internal */ export declare const RequestsTo$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace RequestsTo$ { /** @deprecated use `RequestsTo$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RequestsTo$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RequestsTo$Outbound` instead. */ type Outbound = RequestsTo$Outbound; } export declare function requestsToToJSON(requestsTo: RequestsTo): string; export declare function requestsToFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=requeststo.d.ts.map