import { ts } from '@servicenow/sdk-project'; import { TableDefinition } from './table-fetch'; export declare function tableToTypescript(table: TableDefinition, options: { sdkCoreDbModuleSpecifier?: string; }): string; export declare function toBoolean(value: string): boolean; export declare function toNumber(value: string): number; export declare function tablesToGlobalDeclaration(tables: TableDefinition[], sdkDbModuleSpecifier: string): ts.ts.Node[];