/** One or more regex or glob patterns that class names must match, or `null` to disable. */ export type Value = string | string[] | null; /** * Rule that validates class attribute values against configured naming patterns. * * Splits the `class` attribute into individual class names and checks each * one against the provided string or regex patterns. Reports any class name * that does not match at least one of the configured patterns. Dynamic * values are excluded from the check. */ declare const _default: Readonly>; export default _default;