export declare const verificationIconClassNamePrefix: "os-shared-VerificationIcon"; export declare const verificationIconClassNames: { readonly root: "os-shared-VerificationIcon-root"; readonly img: "os-shared-VerificationIcon-img"; }; export type VerificationIconClassNames = (typeof verificationIconClassNames)[keyof typeof verificationIconClassNames]; /** Icon variant matches the status enum — use to override which icon is displayed regardless of status. */ export declare enum VerificationIconStatus { /** Green check mark */ Verified = "verified", /** Dark blue check mark */ Reviewed = "reviewed", /** Light blue check mark */ Completed = "completed", /** Gray check mark */ Incomplete = "incomplete", /** Red cross */ Rejected = "rejected", /** Gray cross */ Closed = "closed", /** Gray archive/box */ Archived = "archived" } export declare const statusIcon: Record; /** Icon variant matches the status enum — use to override which icon is displayed regardless of status. */ export type VerificationIconVariant = `${VerificationIconStatus}`; export declare const iconVariantMap: Record; export declare const iconVariantBG: Record;