export declare type ApolloThemeColorConfig = {
    primaryColor: ColorPalleteConfig;
    errorColor: ColorPalleteConfig;
    pendingColor: ColorPalleteConfig;
    successColor: ColorPalleteConfig;
    linkColor: ColorPalleteConfig;
    neutralColor: NeutralColor;
};
export declare type ColorPalleteConfig = {
    color50: string;
    color100: string;
    color200: string;
    color500: string;
    color600: string;
    color700: string;
};
export declare type NeutralColor = {
    whiteColor: string;
    tableHeaderColor: string;
    backgroundColor: string;
    dividerColor: string;
    disableColor: string;
    borderColor: string;
    placeholderColor: string;
    primaryTextColor: string;
    secondaryTextColor: string;
    titleTextColor: string;
};
