import { z } from 'zod';
/**
 * Schema for a snippet library.
 */
export declare const SnippetLibrarySchema: z.ZodObject<{
    id: z.ZodString;
    name: z.ZodString;
    description: z.ZodString;
    code: z.ZodString;
    packages: z.ZodArray<z.ZodString>;
    organization: z.ZodString;
}, z.core.$loose>;
/**
 * Entity for the snippetLibraries collection.
 */
export type SnippetLibrary = z.infer<typeof SnippetLibrarySchema>;
