import type { CSSProperties } from 'react';
export interface GradientStyles {
    background: CSSProperties;
    border: CSSProperties;
    heading: CSSProperties;
}
export declare const colorfulGradientLightMode: () => {
    background: {
        backgroundImage: string;
    };
    border: {
        borderImage: string;
        borderImageSlice: number;
        borderImageSource: string;
        borderRadius: number;
        borderStyle: string;
        borderWidth: string;
    };
    heading: {
        WebkitBackgroundClip: string;
        WebkitTextFillColor: string;
        background: string;
        display: string;
    };
};
export declare const colorfulGradientDarkMode: () => {
    background: {
        backgroundImage: string;
    };
    border: {
        borderImage: string;
        borderImageSlice: number;
        borderImageSource: string;
        borderRadius: number;
        borderStyle: string;
        borderWidth: string;
    };
    heading: {
        WebkitBackgroundClip: string;
        WebkitTextFillColor: string;
        background: string;
        display: string;
    };
};
export declare const useGradientStyles: () => {
    background: {
        backgroundImage: string;
    };
    border: {
        borderImage: string;
        borderImageSlice: number;
        borderImageSource: string;
        borderRadius: number;
        borderStyle: string;
        borderWidth: string;
    };
    heading: {
        WebkitBackgroundClip: string;
        WebkitTextFillColor: string;
        background: string;
        display: string;
    };
};
//# sourceMappingURL=GradientStyles.d.ts.map