import { z } from 'zod';
export declare const GetStoreResponse: z.ZodObject<{
    data: z.ZodArray<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;
    }>, "many">;
}, "strip", z.ZodTypeAny, {
    data?: {
        type?: string;
        name?: string;
        id?: number;
    }[];
}, {
    data?: {
        type?: string;
        name?: string;
        id?: number;
    }[];
}>;
export type GetStoreResponse = z.infer<typeof GetStoreResponse>;
