/**
 * Parses a BOLT11 invoice and extracts bid amount and payment hash
 *
 * @param invoice - The BOLT11 invoice string to parse
 * @returns Object containing amount_sats and payment_hash
 * @throws Error if decoding fails or if either output field is empty
 */
export declare function parseBolt11(invoice: string): {
    amount_sats: number;
    payment_hash: string;
};
