import React, { ReactNode } from "react";
export declare const PrimaryColorContext: React.Context<string>;
export declare const PrimaryColorProvider: ({ value, children, }: {
    value: string;
    children: ReactNode;
}) => JSX.Element;
export declare const usePrimaryColor: () => string;
