export interface GetTransactionsInput {
    accountId: string;
    startDate?: string;
    endDate?: string;
    minAmount?: number;
    maxAmount?: number;
    category?: string;
    payee?: string;
    limit?: number;
}
export declare class GetTransactionsInputParser {
    parse(args: unknown): GetTransactionsInput;
}
//# sourceMappingURL=input-parser.d.ts.map