type AlertStyleProps = {
    modelValue: boolean;
    color: string;
    textColor: string;
    title: string;
    description: string;
    icon: string;
    closeText: string;
    closeable: boolean;
    dense: boolean;
    outline: boolean;
    center: boolean;
    borderColor: string;
    border: string;
};
export declare const useAlertStyles: (props: AlertStyleProps) => {
    alertStyle: import("vue").ComputedRef<{
        border: string;
        padding: string;
        backgroundColor: string;
        boxShadow: string;
    }>;
    contentStyle: import("vue").ComputedRef<{
        alignItems: string;
        color: string;
    }>;
    titleStyle: import("vue").ComputedRef<{
        color: string;
    }>;
    borderStyle: import("vue").ComputedRef<{
        backgroundColor: string;
    }>;
};
export {};
