import { AuthenticationTemplate } from '../template-types'; /** * A standard single-factor authentication template which uses * Pay-to-Public-Key-Hash (P2PKH), the most common authentication scheme in use * on the network. * * This P2PKH template uses BCH Schnorr signatures, reducing the size of * transactions. * * Note, this authentication template uses only a single `Key`. For HD key * support, see `authenticationTemplateP2pkhHd`. */ export declare const authenticationTemplateP2pkhNonHd: AuthenticationTemplate; /** * A standard single-factor authentication template which uses * Pay-to-Public-Key-Hash (P2PKH), the most common authentication scheme in use * on the network. * * This P2PKH template uses BCH Schnorr signatures, reducing the size of * transactions. * * Because the template uses a Hierarchical Deterministic (HD) key, it also * supports an "Observer (Watch-Only)" entity. */ export declare const authenticationTemplateP2pkh: AuthenticationTemplate; //# sourceMappingURL=p2pkh.d.ts.map