import { CommonService } from 'src/common/common.service';
import { ProductService } from './product.service';
import { CalculatePremiumDto, ProductListDto } from './dto/product.dto';
export declare class AgentProductController {
    private readonly productService;
    private readonly common;
    constructor(productService: ProductService, common: CommonService);
    list(req: any, query: ProductListDto): Promise<{
        status: string;
        message: string;
        data: any[];
        pagination: {
            total: number;
            page: number;
            limit: number;
            totalPages: number;
            hasNextPage: boolean;
            hasPrevPage: boolean;
        };
    }>;
    getById(req: any, id: string): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
    calculate(req: any, id: string, query: CalculatePremiumDto): Promise<{
        status: string;
        message: string;
        data: any;
    }>;
}
