/** * Copyright (c) 2025 Ofri Peretz * Licensed under the MIT License. Use of this source code is governed by the * MIT license that can be found in the LICENSE file. */ import { TSESLint } from '@interlace/eslint-devkit'; /** * Collection of all core security ESLint rules */ export declare const rules: Record>; /** * ESLint Plugin object */ export declare const plugin: TSESLint.FlatConfig.Plugin; export declare const configs: Record; /** * Default export for ESLint plugin */ export default plugin; /** * Re-export all types from the types barrel */ export type { AllSecurityRulesOptions, } from './types/index';