import { TTypeName } from '..'; export type TSchemataFunctionType = 'table' | 'scalar'; export type TSchemataFunction = { schema: string; function: string; type: TSchemataFunctionType; scalarType: TTypeName; scalarLength: number; scalarPrecision: number; scalarScale: number; clr: boolean; description: string; }; export declare function Info(base: string, schemas?: string[], functions?: string[], type?: TSchemataFunctionType): string; //# sourceMappingURL=function.d.ts.map