//#region src/lib/keyboard.d.ts type KeyboardKind = 'text' | 'email' | 'password' | 'new-password' | 'username' | 'url' | 'search' | 'phone' | 'tel' | 'number' | 'int' | 'decimal' | 'numbers-and-punctuation' | 'otp' | 'name' | 'given-name' | 'family-name' | 'address-line1' | 'address-line2' | 'postal-code' | 'cc-number' | 'cc-exp' | 'cc-csc' | 'off' | 'date'; type AutoCompleteToken = 'on' | 'off' | 'name' | 'honorific-prefix' | 'given-name' | 'additional-name' | 'family-name' | 'honorific-suffix' | 'nickname' | 'username' | 'new-password' | 'current-password' | 'one-time-code' | 'organization-title' | 'organization' | 'street-address' | 'address-line1' | 'address-line2' | 'address-line3' | 'address-level4' | 'address-level3' | 'address-level2' | 'address-level1' | 'country' | 'country-name' | 'postal-code' | 'cc-name' | 'cc-given-name' | 'cc-additional-name' | 'cc-family-name' | 'cc-number' | 'cc-exp' | 'cc-exp-month' | 'cc-exp-year' | 'cc-csc' | 'cc-type' | 'transaction-amount' | 'language' | 'bday' | 'bday-day' | 'bday-month' | 'bday-year' | 'sex' | 'photo' | 'email' | 'impp' | 'tel' | 'tel-country-code' | 'tel-national' | 'tel-area-code' | 'tel-local' | 'tel-local-prefix' | 'tel-local-suffix' | 'tel-extension' | 'url' | 'webauthn' | `section-${string}` | (string & {}); interface KeyboardOptions { kind?: KeyboardKind; autoCapitalize?: 'none' | 'sentences' | 'words' | 'characters'; autoComplete?: AutoCompleteToken; autoCorrect?: boolean; enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'search' | 'send'; } //#endregion export { KeyboardOptions }; //# sourceMappingURL=keyboard.d.ts.map