import { z } from 'zod';
import { Blockchain } from './general';
export declare const ChainAsset: z.ZodObject<{
    chain: z.ZodNativeEnum<typeof Blockchain>;
    assetId: z.ZodString;
}, "strip", z.ZodTypeAny, {
    chain: Blockchain;
    assetId: string;
}, {
    chain: Blockchain;
    assetId: string;
}>;
