export declare function scriptOf(text: string): string | null; export type TypedTextVerdict = { status: "verified" | "mismatch" | "unverified"; message: string; sent: string; landed?: string; }; export type TypedTextMatch = "exact" | "normalized" | "none"; export declare function matchTypedText(landed: string, expected: string, sent: string): TypedTextMatch; export type TypedTextInput = { sent: string; expected: string; landed: string | null; readError?: string; masked?: boolean; fieldId?: string | null; nonLatinKeyboards: string[]; }; export declare function verdictForTypedText(input: TypedTextInput): TypedTextVerdict; //# sourceMappingURL=typedTextVerify.d.ts.map