import { DomainObject } from 'domain-objects'; import { z } from 'zod'; export interface UseCasesDeclarationInput { 'use-cases': Record; } export declare class UseCasesDeclarationInput extends DomainObject implements UseCasesDeclarationInput { static schema: z.ZodObject<{ 'use-cases': z.ZodRecord; extends: z.ZodOptional>; practices: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>; }