import { z } from 'zod';
/**
 * /v2/account/luck definition
 */
export declare const AccountLuckDTO: z.ZodArray<z.ZodObject<{
    /** Always the string "luck". */
    id: z.ZodLiteral<"luck">;
    /** The amount of luck consume. */
    value: z.ZodNumber;
}, z.core.$strict>>;
