type Param = { dbFullName: string; tableName: string; }; /** * # Drop All Foreign Keys */ export default function dropAllForeignKeys({ dbFullName, tableName, }: Param): Promise; export {};