/**
 * GT-Next ESLint Plugin
 *
 * Provides ESLint rules for General Translation Next.js integration.
 * This plugin detects unwrapped dynamic content in translation components
 * and provides better error reporting with file locations and line numbers.
 */
declare const plugin: {
    meta: {
        name: string;
        version: string;
    };
    rules: {
        'no-dynamic-jsx': import("eslint").Rule.RuleModule;
        'no-dynamic-string': import("eslint").Rule.RuleModule;
    };
    configs: {
        recommended: {
            plugins: string[];
            rules: {
                'gt-next/no-dynamic-jsx': boolean;
                'gt-next/no-dynamic-string': boolean;
            };
            settings: {
                react: {
                    version: string;
                };
            };
        };
    };
};
export = plugin;
//# sourceMappingURL=index.d.ts.map