import { type Class, type ClassDecorator } from "@antelopejs/interface-core/decorators"; import type { Table } from "./table"; export declare const RegisterTable: (tableName: string, schemaName: string) => ClassDecorator; export declare function getTablesForSchema(schemaName: string): Record> | undefined;