/** * The published Look property roster, grouped by the job each property performs, * and the value kind each one is checked as. */ export interface LookPropertyGroup { readonly family: string; readonly properties: readonly string[]; } /** Published Look vocabulary, grouped by the job each property performs. */ export declare const LOOK_PROPERTY_GROUPS: readonly LookPropertyGroup[]; export declare const LOOK_PROPERTIES: Set; /** Stable editor-documentation key for one checked Look property. */ export declare function lookPropertyDocumentationKey(property: string): string; export type LookPropertyValueKind = "animation" | "angle" | "background" | "border" | "color" | "duration" | "filter" | "image" | "keyword" | "line-height" | "metric" | "number" | "number-keyword" | "shadow" | "text" | "track" | "transform" | "transition"; export declare const LOOK_PROPERTY_VALUE_KINDS: ReadonlyMap; //# sourceMappingURL=properties.d.ts.map