import { Schema, Model, Field } from 'sqlex'; import { Database as SchemaInfo } from 'sqlex/dist/types'; export declare function printSchema(schema: Schema | SchemaInfo, keyword?: string): string; export declare function printSchemaTypeScript(schema: Schema | SchemaInfo, base?: string, column?: string): string; interface ExportOptions { path?: string; package?: string; types?: string[]; } export declare function shouldSkip(entry: Model | Field, options: ExportOptions): any; export declare function exportSchemaJava(schema: Schema | SchemaInfo, options: ExportOptions): void; export {};