import { PhrHealthLockerService } from './phr_health_locker.service';
export declare class PhrHealthLockerController {
    private readonly phrHealthLockerService;
    constructor(phrHealthLockerService: PhrHealthLockerService);
    create(abhaAddress: string, yearOfBirth: number, name: string, gender: string, hip_id: string): Promise<{
        status: string;
        message: string;
        link_token?: undefined;
    } | {
        status: string;
        message: string;
        link_token: any;
    }>;
}
