import { z } from "zod"; import { EMeteorWalletSignInType } from "./types_dappConnect"; export declare const ZO_DappSignInAction_Base: z.ZodObject<{ contract_id: z.ZodString; public_key: z.ZodString; }, "strip", z.ZodTypeAny, { contract_id: string; public_key: string; }, { contract_id: string; public_key: string; }>; export declare const ZO_DappSignInAction_SelectedMethods: z.ZodObject<{ contract_id: z.ZodString; public_key: z.ZodString; type: z.ZodLiteral; methods: z.ZodArray; }, "strip", z.ZodTypeAny, { contract_id: string; public_key: string; type: EMeteorWalletSignInType.SELECTED_METHODS; methods: string[]; }, { contract_id: string; public_key: string; type: EMeteorWalletSignInType.SELECTED_METHODS; methods: string[]; }>; export declare const ZO_DappSignInAction_AllMethods: z.ZodObject<{ contract_id: z.ZodString; public_key: z.ZodString; type: z.ZodLiteral; methods: z.ZodOptional; }, "strip", z.ZodTypeAny, { contract_id: string; public_key: string; type: EMeteorWalletSignInType.ALL_METHODS; methods?: undefined; }, { contract_id: string; public_key: string; type: EMeteorWalletSignInType.ALL_METHODS; methods?: undefined; }>; export declare const ZO_DappSignInAction_Combined: z.ZodUnion<[z.ZodObject<{ contract_id: z.ZodString; public_key: z.ZodString; type: z.ZodLiteral; methods: z.ZodArray; }, "strip", z.ZodTypeAny, { contract_id: string; public_key: string; type: EMeteorWalletSignInType.SELECTED_METHODS; methods: string[]; }, { contract_id: string; public_key: string; type: EMeteorWalletSignInType.SELECTED_METHODS; methods: string[]; }>, z.ZodObject<{ contract_id: z.ZodString; public_key: z.ZodString; type: z.ZodLiteral; methods: z.ZodOptional; }, "strip", z.ZodTypeAny, { contract_id: string; public_key: string; type: EMeteorWalletSignInType.ALL_METHODS; methods?: undefined; }, { contract_id: string; public_key: string; type: EMeteorWalletSignInType.ALL_METHODS; methods?: undefined; }>]>; export declare const ZO_DappSignTransactionAction_UrlQuery: z.ZodObject<{ callback_url: z.ZodString; transactions: z.ZodString; meta: z.ZodOptional; }, "strip", z.ZodTypeAny, { callback_url: string; transactions: string; meta?: string | undefined; }, { callback_url: string; transactions: string; meta?: string | undefined; }>;