import type { Path } from "@angular-devkit/core"; import type { Source } from "@angular-devkit/schematics"; export interface BaseSchema { name: string; path?: string | Path; language?: string; sourceRoot?: string; spec?: boolean; specFileSuffix?: string; flat?: boolean; plural?: string; constant?: string; } export interface TransformOptions { pluralizeName?: boolean; } export declare function createTransform(options: T, opts?: TransformOptions): T; export declare function createGenerate(options: BaseSchema): Source;