import type { Ref } from '@stacksjs/stx'; /** * Reactive EyeDropper API. */ export declare function useEyeDropper(): UseEyeDropperReturn; export declare interface UseEyeDropperReturn { isSupported: Ref sRGBHex: Ref open: () => Promise<{ sRGBHex: string } | undefined> }