import { pascal, camel, kebab, pluralize } from "../../utils/string.js"; /** * irgen Emitter SDK * Provides common utilities for building emitters. */ export declare const casing: { pascal: typeof pascal; camel: typeof camel; kebab: typeof kebab; plural: typeof pluralize; }; export declare function ensureDir(p: string): void; export declare function writeIfChanged(filePath: string, content: string): void; export declare function writeOnce(filePath: string, content: string): void;