/** * Rule that disallows consecutive `
` elements. * * Queries all `
` elements in the document and checks whether the next * non-whitespace sibling is another `
`. Consecutive line breaks are * typically a sign that a more semantic element (e.g., `

`) should be * used instead, which is important for accessibility. */ declare const _default: Readonly>; export default _default;