import { Tree } from '@nx/devkit';
export interface InitGeneratorSchema {
    name: string;
    url?: string;
    namespace?: string;
    database?: string;
    user?: string;
    pass?: string;
}
export default function (tree: Tree, options: InitGeneratorSchema): Promise<void>;
