import { z } from 'zod';
export declare const voteOnPostSchema: z.ZodObject<{
    author: z.ZodString;
    permlink: z.ZodString;
    weight: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    weight: number;
    author: string;
    permlink: string;
}, {
    weight: number;
    author: string;
    permlink: string;
}>;
export declare const sendTokenSchema: z.ZodObject<{
    to: z.ZodString;
    amount: z.ZodNumber;
    currency: z.ZodEnum<["HIVE", "HBD"]>;
    memo: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    to: string;
    amount: number;
    currency: "HIVE" | "HBD";
    memo?: string | undefined;
}, {
    to: string;
    amount: number;
    currency: "HIVE" | "HBD";
    memo?: string | undefined;
}>;
