import type { ValuesOf } from '../../Types/ValuesOf'; /** * `PinMode` - The `PinMode` object is used to describe the different types of pin modes. * * @public */ export declare const PinMode: { /** * `text` - */ readonly Text: "text"; /** * `password` - */ readonly Password: "password"; }; /** * @public */ export type PinMode = ValuesOf; //# sourceMappingURL=PinMode.d.ts.map