export interface ScreenMembers {
name: string;
captchaImage: string | null;
captchaSiteKey: string | null;
captchaProvider: string | null;
isCaptchaAvailable: boolean;
data: Record<string, string | boolean | string[] | Record<string, string[]> | Array<PhonePrefix> | PasskeyCreate> | null;
links: Record<string, string> | null;
texts: Record<string, string> | null;
captcha: CaptchaContext | null;
}