import { JSONSchema, ValidateFunction } from '../validation'; export type Store = { id: string; owner: string; description: string; links: { name: string; url: string; }[]; images: { name: string; file: string; }[]; version: number; }; export declare namespace Store { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=store.d.ts.map