export const auditStatus: ({
    val: number;
    text: string;
    color?: undefined;
} | {
    val: number;
    text: string;
    color: any;
})[];
export const riskGradeStatus: {
    val: number;
    text: string;
    color: any;
}[];
export const auditStatusList: ({
    val: number;
    text: string;
    color?: undefined;
} | {
    val: number;
    text: string;
    color: any;
})[];