import { Context } from "koa"; import { FormControl } from "../controls/controls.js"; import { FormDataValue } from "../form-types.js"; import { FormField } from "./field.js"; export declare class PhoneNumberWithoutCountryCode extends FormField { getEmptyValue(): string; parse(ctx: Context, raw_value: FormDataValue): Promise<{ parsable: true; parsed_value: string; error: null; } | { parsable: false; parsed_value: null; error: string; }>; getControl(): FormControl; }