export declare const baseConfig: {
    color: string;
    fill: string;
    textColor: string;
    colors: string[];
};
export declare function useConfig(config?: {
    [key: string]: any;
}): {
    settings: import("vue").ComputedRef<{
        color: string;
        fill: string;
        textColor: string;
        colors: string[];
    }>;
};
