/** How a Look name is spelled in CSS, and which published name a misspelling meant. */ export declare function cssPropertyName(name: string): string; /** * The closest vocabulary entry to a misspelling, or null when nothing is close * enough to name. Case differences and one or two edits count as near misses; * anything further apart is a different word and gets the full vocabulary. */ export declare function nearestLookName(name: string, vocabulary: Iterable): string | null; //# sourceMappingURL=naming.d.ts.map