import { z } from 'zod';
export declare const Store: z.ZodObject<{
    id: z.ZodNumber;
    type: z.ZodString;
    name: z.ZodString;
}, "strip", z.ZodTypeAny, {
    type?: string;
    name?: string;
    id?: number;
}, {
    type?: string;
    name?: string;
    id?: number;
}>;
export type Store = z.infer<typeof Store>;
