import { ParsedOutput, ParsedTransaction } from '../parsed-output';
export type PaypalTransaction = ParsedTransaction & {
    baseAmount: number;
    fees: number;
};
export type PaypalOutput = ParsedOutput<PaypalTransaction>;
export declare const paypalStatementParser: Readonly<import("../statement-parser").StatementParser<PaypalOutput, undefined>>;
