//#region src/libs/collection/helpers/to-safe-table-name.d.ts
/**
 * Converts a table name to a safe table name by truncating the name if it exceeds the limit
 */
declare const toSafeTableName: (name: string, limit: number | null) => {
  name: string;
  rawName: string;
};
//#endregion
export { toSafeTableName as default };
//# sourceMappingURL=to-safe-table-name.d.mts.map