import { Pattern, Declaration, UUID } from '../'; export declare type NamespaceDeclaration = { type: 'namespace'; data: { id: UUID; name: Pattern; declarations: Declaration[]; }; };