export declare const BUSINESS_STATUS: Readonly<{
    readonly NOT_SUBMITTED: "NOT_SUBMITTED";
    readonly SUBMITTED: "SUBMITTED";
    readonly REVIEWING: "REVIEWING";
    readonly REJECTED: "REJECTED";
    readonly RESUBMITTED: "RESUBMITTED";
    readonly APPROVED: "APPROVED";
    readonly PENDING: "PENDING";
}>;
export type TBusinessStatus = keyof typeof BUSINESS_STATUS;
export declare const BUSINESS_DOC_TYPES: Readonly<{
    readonly TRADE_LICENSE: "TRADE_LICENSE";
}>;
export type TBusinessDocTypes = keyof typeof BUSINESS_DOC_TYPES;
