/** Stable identifiers for the built-in gemstone accent palette. */ export declare const GEMSTONE_KEYS:readonly['emerald','peridot','topaz','ruby','tourmaline','amethyst','aquamarine','sapphire','hematite'];export type GemstoneKey=(typeof GEMSTONE_KEYS)[number]; /** Shared visual data for a gemstone accent. Labels intentionally stay in the consumer so they * can use the application's localization catalog and can be presented in any order. */ export interface GemstoneAccent{key:GemstoneKey;fill:string;deep:string;} /** The canonical gemstone accent palette. Consumers may choose a different order and default * value when mapping this record into `lr-swatch-picker` options. */ export declare const GEMSTONES:Readonly>; /** Recommended shared default. A consumer can choose another default by passing `value`. */ export declare const DEFAULT_GEMSTONE:GemstoneKey;