import * as z from 'zod'; import type { Collection } from '../../schemas/satellite'; /** * @see Collections */ export declare const CollectionsSchema: z.ZodObject<{ collections: z.ZodReadonly>; }, z.core.$strict>; /** * Defines the collections where a hook or assertion should run. */ export interface Collections { /** * An array of collection names where the hook or assertion will run. * If empty, no hooks or assertions are triggered. */ collections: readonly Collection[]; }