import { RelationalDatabaseSchema } from "../models/databaseSchema.model"; import { TablePageConfig, TablePageNestedTableKey } from "../models/tablePage.model"; /** * Get nested table page config by its nested table key. * @param rootTablePageConfig The parent table page config. * @param key The nested table key. * @param databaseSchema The database schema. * @returns The nested table page config. */ export declare function getNestedTablePageConfigByTablePageNestedTableKey(rootTablePageConfig: TablePageConfig, key: TablePageNestedTableKey): TablePageConfig; export declare function getNestedTablePageConfigByTablePageNestedTableKeyAndVerify(rootTablePageConfig: TablePageConfig, key: TablePageNestedTableKey, databaseSchema: RelationalDatabaseSchema): TablePageConfig;