import type { AttributeOption, CalleeOption, ESLintRule, TagOption, VariableOption } from "../types/rule.js";
export type Options = [
    Partial<AttributeOption & CalleeOption & TagOption & VariableOption & {
        classesPerLine?: number;
        entryPoint?: string;
        group?: "emptyLine" | "never" | "newLine";
        indent?: "tab" | number;
        lineBreakStyle?: "unix" | "windows";
        preferSingleLine?: boolean;
        printWidth?: number;
        tailwindConfig?: string;
        tsconfig?: string;
    }>
];
export declare const enforceConsistentLineWrapping: ESLintRule<Options>;
//# sourceMappingURL=enforce-consistent-line-wrapping.d.ts.map