import { SchemaOptions } from '../types'; export declare function generateSchema(description: string, options?: SchemaOptions): Promise<{ type: string; properties: {}; }>; export declare function saveSchema(schema: any, filePath: string, format?: boolean): Promise; export declare function loadSchema(filePath: string): Promise;