import { Tree } from '@nx/devkit';
import { IndexJsonSchemaGeneratorSchema } from './schema';
export declare function GenerateSchematicDefinitionsMap(tree: Tree, options: IndexJsonSchemaGeneratorSchema, basePath?: string): Record<string, {
    $ref: string;
}>;
export declare function GenerateDefinitionsMap(tree: Tree, options: IndexJsonSchemaGeneratorSchema, basePath?: string): Record<string, {
    $ref: string;
}>;
export declare function indexJsonSchemaGenerator(tree: Tree, options: IndexJsonSchemaGeneratorSchema): Promise<void>;
export default indexJsonSchemaGenerator;
