export type ColorDecision = {
    cssVarName: `--${string}`;
    decisionObjectPath: readonly string[];
    option: {
        color: `#${string}` | {
            light: `#${string}`;
            dark: `#${string}`;
        };
        optionObjectPath: readonly string[];
        cssVarName: `--${string}`;
    };
};
export declare function resolveColorHexCodeToDecision(params: {
    /** Expects: #xxxxxx or #xxx */
    hexColorCode: string;
}): ColorDecision[];
