import { z } from 'zod';
/**
 * /v2/account/finishers definition
 */
export declare const AccountFinishersDTO: z.ZodArray<z.ZodObject<{
    /** Id of the finisher. */
    id: z.ZodNumber;
    /** Indicated whether the finisher is permanent or temporary. */
    permanent: z.ZodBoolean;
    /** Indicates uses if the finisher is temporary. */
    quantity: z.ZodOptional<z.ZodNumber>;
}, z.core.$strict>>;
