/**
 * Contract audit — reconstructs the full payment lifecycle from on-chain events.
 */
import type { Address } from '@solana/kit';
import type { AuditOptions, ContractAuditReport } from './types';
/**
 * Fetch and reconstruct a contract's audit trail from transaction history.
 */
export declare function fetchContractAudit(rpcUrl: string, contract: Address, options?: AuditOptions): Promise<ContractAuditReport>;
//# sourceMappingURL=audit.d.ts.map