import { DSQL_ChildrenTablesType, DSQL_TableSchemaType } from "../../../types"; type Params = { tables?: DSQL_TableSchemaType[]; tableSchema?: DSQL_TableSchemaType; childTableSchema?: DSQL_ChildrenTablesType; tableName?: string; }; export default function grabTargetTableSchemaIndex({ tables, tableName, tableSchema, childTableSchema, }: Params): number | undefined; export {};