import type { Rule, RuleContext } from "../types.js"; declare function isAllowlisted(repoRoot: string): boolean; declare function isOnScale(ctx: RuleContext, raw: string): boolean; /** * Collects the absolute source offsets of every breakpoint literal that lives * inside a `@media` prelude. A literal value of `0` (e.g. `min-width: 0`) is a * reset, not a breakpoint, and is excluded. */ declare function collectBreakpointLiterals(source: string): { index: number; raw: string; }[]; export declare const rule: Rule; export declare const _internal: { collectBreakpointLiterals: typeof collectBreakpointLiterals; isAllowlisted: typeof isAllowlisted; isOnScale: typeof isOnScale; DISABLE_DIRECTIVE: string; }; export {};