import { AppStatus, FormStateDataTypes } from "@blast-client/types"; export declare const FILE_SIZE_LIMIT_BYTES: number; export declare const ALLOWED_MIME_TYPES: string[]; export declare const APP_STATUSES: Readonly>; export declare const BORROWER_TYPE = "borrower"; export declare const LENDER_TYPE = "lender"; export declare const SBA_TYPE = "SBA"; export declare const FORM_STATE_DATA_TYPES: FormStateDataTypes; export declare const FULL_FORM_STATE_DATA_TYPES: FormStateDataTypes; export declare const EZ_FORM_STATE_DATA_TYPES: FormStateDataTypes; export declare const SIMPLE_FORM_STATE_DATA_TYPES: FormStateDataTypes; export declare const VALIDATION_DATA_TYPES: FormStateDataTypes; export declare const JWT_REFRESH_INTERVAL_MINUTES = 20; export declare const LENDER_DECISION_MAP: Readonly<{ APPROVED_IN_FULL: number; APPROVED_IN_PART: number; DENIED: number; }>; export declare const LOCKED_APP_STATUSES: Readonly; export declare const LOCKED_APP_STATUSES_FOR_DOC_REF: Readonly; export declare const MAXIMUM_CHARACTERS = 1000; export declare const FULL_FORM_FILE_TYPE = "SBA Form 3508"; export declare const EZ_FORM_FILE_TYPE = "SBA Form 3508EZ"; export declare const SIMPLE_FORM_FILE_TYPE = "SBA Form 3508S"; export declare const SBA_2483_FILE_TYPE = "SBA Form 2483"; export declare const SBA_2483_SD_FILE_TYPE = "SBA Form 2483SD"; export declare const SBA_2484_FILE_TYPE = "SBA Form 2484"; export declare const SBA_2484_SD_FILE_TYPE = "SBA Form 2484SD"; export declare const PROMISSORY_NOTE_FILE_TYPE = "Promissory Note"; export declare const SBA_3508_FILE_TYPES: readonly string[]; export declare const SBA_FILE_TYPES: Readonly; export declare const SBA_FILE_TYPES_ID_MAP: Readonly<{ "Denial Justification": number; "Loan Application Supporting Documents for Self-Employed Individuals, Independent Contractors and Partners": number; "Faith-Based Addendum to 2483": number; "Addendum B to 2483": number; "Addendum A to 2483": number; "Forgiveness Supporting Docs (Mortgage Interest Payments)": number; Miscellaneous: number; "PPP Schedule A Worksheet - FTE Reduction Safe Harbor 2": number; "PPP Schedule A Worksheet - Table 2": number; "PPP Schedule A Worksheet - Table 1": number; "3508 & 3508-EZ Supporting Docs (Public Health Operating Restrictions)": number; "3508-EZ Supporting Docs (FTE Certification)": number; "3508 & 3508-EZ Supporting Docs (Job Offer, Refusal, etc. Certification)": number; "3508-EZ Supporting Docs (Salary & Wage Certification)": number; "PPP Schedule A Worksheet": number; "PPP Schedule A": number; "PPP Borrower Demographic Information Form": number; "Forgiveness Supporting Docs (Utility Payments)": number; "Forgiveness Supporting Docs (Rent/Lease Payments)": number; "Forgiveness Supporting Docs (FTE)": number; "Forgiveness Supporting Docs (Payroll)": number; "Transcript of Account": number; "Borrower Note": number; "SBA Form 3508EZ": number; "SBA Form 3508": number; "SBA Form 3508S": number; "SBA Form 2483": number; "SBA Form 2484": number; "SBA Form 2483SD": number; "Loan Application Supporting Docs (Payroll)": number; }>; export declare const STORAGE_KEY_AUTH_TOKEN = "authToken"; export declare const STORAGE_KEY_AUTH_TOKEN_EXPIRES = "authTokenExpires"; export declare const STORAGE_KEY_AUTH_TOKEN_TYPE = "authTokenType"; export declare const DOCUSIGN_LOCAL_STORAGE_KEY = "docusignConfig"; export declare const DOCUSIGN_ENABLED = "docusignEnabled"; export declare const ERROR_PHONE = "ERROR_PHONE"; export declare const ERROR_MFA = "ERROR_MFA"; export declare const ERROR_SET_PASSWORD = "ERROR_SET_PASSWORD"; export declare const ERROR_SET_EULA = "ERROR_SET_EULA"; export declare const ERROR_SEND_TOKEN = "ERROR_SEND_TOKEN"; export declare const ERROR_MISSING_INSTITUTION = "ERROR_MISSING_INSTITUTION"; export declare const ERROR_INSTITUTION_NOT_CONFIGURED = "ERROR_INSTITUTION_NOT_CONFIGURED"; export declare const ERROR_APP_NOT_FOUND = "ERROR_APP_NOT_FOUND"; export declare const FORM_TYPE_EZ = "EZ"; export declare const FORM_TYPE_FULL = "Full"; export declare const FORM_TYPE_SIMPLE = "Simple"; export declare const FORM_TYPE_2483 = "2483"; export declare const FORM_TYPE_2483_SD = "2483SD"; export declare const FORM_TYPE_2484 = "2484"; export declare const FORM_TYPE_2484_SD = "2484SD"; export declare const FORM_TYPE_PROMISSORY_NOTE = "PromissoryNote"; export declare const SBA_STATUSES: Readonly<{ PENDING_VALIDATION: string; UNDER_REVIEW: string; FULLY_APPROVED: string; NOT_APPROVED: string; PARTIALLY_APPROVED: string; LENDER_ADDITIONAL_INFO_NEEDED: string; PAYMENT_SENT: string; PAYMENT_CONFIRMED: string; PAYMENT_FAILED: string; }>; export declare const SBA_INCOMPLETE_STATUSES: readonly string[]; export declare const SBA_FORGIVEN_STATUESES: readonly string[]; export declare const SBA_ORIGINATION_STATUSES: Readonly<{ PENDING_VALIDATION: string; FAILED_VALIDATION: string; UNDER_REVIEW: string; APPROVED: string; NOT_APPROVED: string; }>; export declare const DOC_NOT_FOUND_MESSAGE = "Document Not Found!"; export declare const PPP_DRAW_NUMBER: Readonly>;