declare namespace _exports {
    export { RuleFixer, MessageId, Option, RuleModule };
}
declare const _exports: RuleModule;
export = _exports;
type RuleFixer = import("../types").RuleFixer;
type MessageId = {
    CLOSE_STYLE_WRONG: "closeStyleWrong";
    NEWLINE_MISSING: "newlineMissing";
    NEWLINE_UNEXPECTED: "newlineUnexpected";
};
type Option = {
    closeStyle?: "sameline" | "newline" | undefined;
    ifAttrsMoreThan?: number | undefined;
};
type RuleModule = import("../types").RuleModule<[Option]>;
//# sourceMappingURL=attrs-newline.d.ts.map