import type { CSSProperties, ComputedRef } from 'vue'; import type { DkAlertProps } from '../../dkalert/src/props'; export interface getAlertType { styleList: ComputedRef; isSuccess: boolean; } export declare const getAlert: (props: DkAlertProps) => getAlertType;