import type { ColorScheme } from '../../types/color-scheme';
import type { AnyToken } from '../../types/tokens';
export declare type ExtractTokenValueFromString = (token: string) => string | undefined;
export declare type ExtractTokenValue = (token: AnyToken) => string;
export declare type ExtractTokenValuePair = (token: AnyToken) => ColorScheme<string>;
