import { classNameProps, styleProps } from "../types/toastTypes";
declare const useStyleHook: () => {
    backgroundColors: {
        success: string;
        error: string;
        warning: string;
        info: string;
        loading: string;
    };
    textColors: {
        success: string;
        error: string;
        warning: string;
        info: string;
        loading: string;
    };
    progressColors: {
        success: string;
        error: string;
        warning: string;
        info: string;
        loading: string;
    };
    style: styleProps;
    setStyles: import("react").Dispatch<import("react").SetStateAction<styleProps | undefined>>;
    setClassName: import("react").Dispatch<import("react").SetStateAction<classNameProps | undefined>>;
};
export default useStyleHook;
