import { PhrNewBillingService } from './phr-new-billing.service';
import { CreatePhrNewBillingDto } from './dto/create-phr-new-billing.dto';
import { UpdatePhrNewBillingDto } from './dto/update-phr-new-billing.dto';
export declare class PhrNewBillingController {
    private readonly phrNewBillingService;
    constructor(phrNewBillingService: PhrNewBillingService);
    create(createPhrNewBillingDto: CreatePhrNewBillingDto): string;
    findAll(): string;
    findOne(id: string): string;
    update(id: string, updatePhrNewBillingDto: UpdatePhrNewBillingDto): string;
    remove(id: string): string;
}
