declare const name: string;
declare const version: string;
declare const description: string;
declare const main: string;
declare const types: string;
declare const keywords: string[];
declare namespace publishConfig {
    const access: string;
}
declare namespace repository {
    const type: string;
    const url: string;
}
declare namespace bugs {
    const url_1: string;
    export { url_1 as url };
}
declare const homepage: string;
declare const author: string;
declare const license: string;
declare const scripts: {
    test: string;
    "lint:check": string;
    "lint:format": string;
    "ts:check": string;
    build: string;
    "typeorm:dev": string;
    "typeorm:prod": string;
    "start:dev": string;
    "start:prod": string;
};
declare const dependencies: {
    "@lomray/microservice-helpers": string;
    "@lomray/microservices-client-api": string;
    bcrypt: string;
    "class-transformer": string;
    "class-validator": string;
    "class-validator-jsonschema": string;
    "firebase-admin": string;
    typeorm: string;
};
declare const devDependencies: {
    "@types/bcrypt": string;
};
declare namespace peerDependencies {
    const tslib: string;
}
declare const overrides: {
    typeorm: {
        xml2js: string;
    };
    "winston-loki": {
        protobufjs: string;
    };
};
export { name, version, description, main, types, keywords, publishConfig, repository, bugs, homepage, author, license, scripts, dependencies, devDependencies, peerDependencies, overrides };
