import { DomainObject } from 'domain-objects'; import { z } from 'zod'; /** * defines an example that can be used to check use-case declarations against and to clone new projects from */ export interface ExampleDeclaration { name: string; exampleRootDirectory: string; } export declare class ExampleDeclaration extends DomainObject implements ExampleDeclaration { static schema: z.ZodObject<{ name: z.ZodString; exampleRootDirectory: z.ZodString; }, z.core.$strip>; }