import type { UserProfile } from '@cranberry-money/shared-types';
export type VerificationStatusType = 'verified' | 'pending' | 'rejected' | 'not_started' | 'not_verified' | 'unknown';
interface VerificationStatus {
    type: VerificationStatusType;
    label: string;
}
export declare function getUserVerificationStatus(profile?: UserProfile | string | null): VerificationStatus;
export {};
//# sourceMappingURL=user-verification.d.ts.map