/** * .what = determines an intuitive yet safe constraint name * .why = postgres has a 63 char resource name limit * .how = include a hash if the ideal name would be too long */ export declare const defineConstraintNameSafely: (input: { tableName: string; constraintName: string; }) => string;