import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { Blockchain } from "./blockchain.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const SignatureInputFormAtType: { readonly OpenSeaOrderFill: "OPEN_SEA_ORDER_FILL"; }; export type SignatureInputFormAtType = ClosedEnum; export type OpenSeaFillOrderSignatureInputForm = { atType?: SignatureInputFormAtType | undefined; /** * SeaPort order hash in 'native' format */ signature?: string | undefined; blockchain: Blockchain; }; /** * Form contains required data to generate input message for signing. All fields should be specified in 'native' manner, i.e. without BLOCKCHAIN prefixes */ export type SignatureInputForm = OpenSeaFillOrderSignatureInputForm; /** @internal */ export declare const SignatureInputFormAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SignatureInputFormAtType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SignatureInputFormAtType$ { /** @deprecated use `SignatureInputFormAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly OpenSeaOrderFill: "OPEN_SEA_ORDER_FILL"; }>; /** @deprecated use `SignatureInputFormAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly OpenSeaOrderFill: "OPEN_SEA_ORDER_FILL"; }>; } /** @internal */ export declare const OpenSeaFillOrderSignatureInputForm$inboundSchema: z.ZodType; /** @internal */ export type OpenSeaFillOrderSignatureInputForm$Outbound = { "@type"?: string | undefined; signature?: string | undefined; blockchain: string; }; /** @internal */ export declare const OpenSeaFillOrderSignatureInputForm$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 OpenSeaFillOrderSignatureInputForm$ { /** @deprecated use `OpenSeaFillOrderSignatureInputForm$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OpenSeaFillOrderSignatureInputForm$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OpenSeaFillOrderSignatureInputForm$Outbound` instead. */ type Outbound = OpenSeaFillOrderSignatureInputForm$Outbound; } export declare function openSeaFillOrderSignatureInputFormToJSON(openSeaFillOrderSignatureInputForm: OpenSeaFillOrderSignatureInputForm): string; export declare function openSeaFillOrderSignatureInputFormFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SignatureInputForm$inboundSchema: z.ZodType; /** @internal */ export type SignatureInputForm$Outbound = OpenSeaFillOrderSignatureInputForm$Outbound; /** @internal */ export declare const SignatureInputForm$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 SignatureInputForm$ { /** @deprecated use `SignatureInputForm$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SignatureInputForm$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SignatureInputForm$Outbound` instead. */ type Outbound = SignatureInputForm$Outbound; } export declare function signatureInputFormToJSON(signatureInputForm: SignatureInputForm): string; export declare function signatureInputFormFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=signatureinputform.d.ts.map