/** Kitten command-line interface (CLI): add command. The only valid (and default) thing that can be added is type safety at the moment, which uses the init command’s class to carry out the work. Copyright ⓒ 2026-present, Aral Balkan Small Technology Foundation License: AGPL version 3.0. */ import type { ServerOptions } from '../index.ts'; /** Kitten init command. */ export default function add(aspect: typeof Add.TYPES | typeof Add.TYPE_SAFETY, options: ServerOptions): void; /** Helper for initialising type-safe Kitten projects. */ declare class Add { static TYPES: 'types'; static TYPE_SAFETY: 'type-safety'; aspect: "type-safety" | "types"; constructor(aspect: typeof Add.TYPES | typeof Add.TYPE_SAFETY | undefined, options: ServerOptions & { typesOnly?: boolean; }); } export {};