import type { FetchedPhone } from "../../records/Phone"; export declare type Validator = { error: string; code?: string; }; export declare const call: (phone: string) => Promise; export declare const validate: (val: string) => Promise;