export type TSchemataTableType = 'table' | 'view'; export type TSchemataTable = { schema: string; table: string; type: TSchemataTableType; pk: string; description: string; }; export declare function Info(base: string, schemas?: string[], tables?: string[], type?: TSchemataTableType): string; //# sourceMappingURL=table.d.ts.map