import { ColorType } from './ui'; export interface GetColorProps { colorToken?: string; color?: ColorType | 'inherit'; opacity?: number | string; luminance?: number; } type GetColorPropsFn = GetColorProps & object; export declare function getColor(props: GetColorPropsFn): string | undefined; export {};