import type { ValuesOf } from '../../Types/ValuesOf'; /** * `TextBoxType` - The `TextBoxType` object is used to describe the different types of text box types. * * @public */ export declare const TextBoxType: { readonly Email: "email"; readonly Telephone: "tel"; readonly Text: "text"; readonly Url: "url"; }; /** * @public */ export type TextBoxType = ValuesOf; //# sourceMappingURL=TextBoxType.d.ts.map