import type { ColorScheme } from '~/types/color-scheme'; import type { AnyToken } from '~/types/tokens'; /** * This hook can be used as an escape hatch when you need * to get the light and dark value pair of a token. */ export declare function useExtractTokenValuePair(): (token: AnyToken) => ColorScheme;