import { Connection } from 'typeorm';
export declare class PhrHealthLockerService {
    private connection;
    constructor(connection: Connection);
    create(name: string, gender: string, abhaAddress: string, yearOfBirth: number, hip_id: string): Promise<{
        status: string;
        message: string;
        link_token?: undefined;
    } | {
        status: string;
        message: string;
        link_token: any;
    }>;
}
