export declare const DatabaseType: { /** * The type is not specified. */ readonly TypeUnspecified: "TYPE_UNSPECIFIED"; /** * Represents a database storing tables compatible with Hive Metastore tables. */ readonly Hive: "HIVE"; }; /** * The database type. */ export type DatabaseType = (typeof DatabaseType)[keyof typeof DatabaseType]; export declare const TableType: { /** * The type is not specified. */ readonly TypeUnspecified: "TYPE_UNSPECIFIED"; /** * Represents a table compatible with Hive Metastore tables. */ readonly Hive: "HIVE"; }; /** * The table type. */ export type TableType = (typeof TableType)[keyof typeof TableType];