/**
 * Sylph ESLint Strict Configuration (Flat Config)
 *
 * Extends the standard Sylph configuration with stricter rules, including:
 * - Functional programming enforcement (immutability, no-throw).
 * - Lower complexity and line limits enforced as errors.
 * - Stricter type checking enforcement (no-explicit-any as error).
 * - Stricter abbreviation rules.
 */
declare const sylphStrict: any[];

export { sylphStrict as default, sylphStrict };
