import { IdpDetailsDTO } from '../../models/dtos/idp-details-dto.model';
import { IdpResp } from '../../types';
import { IdpHelperService } from '../../services/idp-helper.service';
export declare class IdpController {
    private readonly idpService;
    constructor(idpService: IdpHelperService);
    idpConfigure(payload: IdpDetailsDTO): Promise<IdpResp>;
}
