import { TransactionRepository } from "./repository/transaction.repository";
import { AuthService } from "../auth/auth.service";
export declare class TransactionService {
    private readonly transactionRepository;
    private readonly authService;
    constructor(transactionRepository: TransactionRepository, authService: AuthService);
    findAll(token: string): Promise<{
        success: boolean;
        code: number;
        message: string;
    }>;
}
