import { PrepareContext, RequiredConfig, Rule, ToStringContext } from "../config"; declare function isHTMLElement(data: unknown): data is HTMLElement; export declare class MinimumHTMLElementRule implements Rule { test: typeof isHTMLElement; toString(this: this, data: HTMLElement, __config: RequiredConfig, __context: ToStringContext): string; } export declare class LesserHTMLElementRule implements Rule { test: typeof isHTMLElement; toString(this: this, data: HTMLElement, __config: RequiredConfig, __context: ToStringContext): string; } export declare class MajorHTMLElementRule implements Rule { test: typeof isHTMLElement; toString(this: this, data: HTMLElement, __config: RequiredConfig, __context: ToStringContext): string; } export declare class MaximumHTMLElementRule implements Rule { test: typeof isHTMLElement; prepare(this: this, data: HTMLElement, config: RequiredConfig, context: PrepareContext): void; toString(this: this, data: HTMLElement, config: RequiredConfig, context: ToStringContext): string; } export {};