import { PaginationDto } from '../../common/dto/pagination.dto.js';
import { PaymentMethod } from '../entities/payment.entity.js';
export declare class QueryPaymentDto extends PaginationDto {
    projectId?: string;
    companyId?: string;
    paymentMethod?: PaymentMethod;
    dateFrom?: string;
    dateTo?: string;
}
