/**
 * ESLint rule: no-dynamic-string
 *
 * Ensures translation functions (t, useGT, getGT) only accept string literals
 * as their first argument. Dynamic content like template literals or string
 * concatenation is prohibited to ensure consistent translation keys.
 */
import type { Rule } from 'eslint';
export declare const noDynamicString: Rule.RuleModule;
//# sourceMappingURL=no-dynamic-string.d.ts.map