import type React from 'react'; export declare type PiPaymentResultStatus = 'success' | 'failed' | 'querying'; export declare type PiPaymentResultFailReason = 'failed' | 'notFound' | 'timeout' | 'invalidParams'; export interface PiPaymentResultProps { className?: string; style?: React.CSSProperties; }