//#region src/components/data-display/code/find-all-colors.d.ts type ColorMatch = { color: string; start: number; end: number; }; /** * テキスト文字列内のすべての色の値とその位置を見つけます。 * HSL、RGB、RGBA、HSLA、HEX、名前付き色をサポートします。 * * @param text - 色の値を検索するテキスト * @returns 色の値、開始位置、終了位置を含む色オブジェクトの配列 */ declare function findAllColors(text: string): ColorMatch[]; //#endregion export { findAllColors };