import { ELintStagedFeature } from "../../domain/enum/lint-staged-feature.enum";
/**
 * Configuration constant for lint-staged.
 * Provides a template function for generating lint-staged configuration files.
 */
export declare const LINT_STAGED_CONFIG: {
    /**
     * Generates a lint-staged configuration file content.
     * @param features - Array of lint-staged features to enable
     * @returns String content for the lint-staged configuration file
     */
    template: (features: Array<ELintStagedFeature>) => string;
};
