import type { Rule } from "../types.js"; interface ZIndexHit { value: number; index: number; } declare function extractZIndexValues(text: string): ZIndexHit[]; declare function isAllowlisted(repoRoot: string): boolean; export declare const rule: Rule; export declare const _internal: { extractZIndexValues: typeof extractZIndexValues; isAllowlisted: typeof isAllowlisted; DISABLE_DIRECTIVE: string; }; export {};