/**
* Configuration options for the required-h1 rule.
*/
export interface Options {
/** Whether to report a violation when more than one `
` element is found. */
'expected-once': boolean;
/** Whether to apply this rule in document fragments (components, partials). */
'in-document-fragment': boolean;
}
/**
* Rule that requires exactly one `` element in the document.
*
* Reports a violation when no `` is present. Optionally reports when
* multiple `` elements exist (controlled by `expected-once`). Can be
* configured to skip document fragments via the `in-document-fragment` option.
*/
declare const _default: Readonly>;
export default _default;