export declare const SigningErr: import("scale-ts").Codec<{ tag: "Rejected"; value: undefined; } | { tag: "Unknown"; value: { reason: string; }; } | { tag: "FailedToDecode"; value: undefined; } | { tag: "PermissionDenied"; value: undefined; }>; export declare const SigningResult: import("scale-ts").Codec<{ signature: `0x${string}`; signedTransaction: `0x${string}` | undefined; }>; declare const RawPayload: import("scale-ts").Codec<{ tag: "Bytes"; value: Uint8Array; } | { tag: "Payload"; value: string; }>; export declare const SigningRawPayload: import("scale-ts").Codec<{ address: string; data: { tag: "Bytes"; value: Uint8Array; } | { tag: "Payload"; value: string; }; }>; export declare const SigningPayload: import("scale-ts").Codec<{ address: string; blockHash: `0x${string}`; blockNumber: `0x${string}`; era: `0x${string}`; genesisHash: `0x${string}`; method: `0x${string}`; nonce: `0x${string}`; specVersion: `0x${string}`; tip: `0x${string}`; transactionVersion: `0x${string}`; signedExtensions: string[]; version: number; assetId: `0x${string}` | undefined; metadataHash: `0x${string}` | undefined; mode: number | undefined; withSignedTransaction: boolean | undefined; }>; import type { CodecType } from "scale-ts"; export type SigningResultType = CodecType; export type RawPayloadType = CodecType; export type SigningRawPayloadType = CodecType; export type SigningPayloadType = CodecType; export {}; //# sourceMappingURL=sign.d.ts.map