export type DecodedRouteHint = { pubkey: string; shortChannelId: string; feeBaseMsat: number; feeProportionalMillionths: number; cltvExpiryDelta: number; }; export type DecodedFeatureBits = Record; export type DecodedBolt11 = { payee?: string; paymentHash?: string; paymentSecret?: string; description?: string; descriptionHash?: string; expiry?: number; minFinalCltvExpiry?: number; routeHints: DecodedRouteHint[][]; featureBits: DecodedFeatureBits; millisatoshis?: string; timestamp: number; }; export declare function decodeBolt11(paymentRequest: string): DecodedBolt11; //# sourceMappingURL=bolt11.d.ts.map