import { ApplicationProperties, Basic, EndpointService } from "../types";
/**
 * Class to manage and expose all endpoits and operations below '/rest/api/1.0/application-properties/*'
 */
export declare class ApplicationEndpoint extends EndpointService {
    constructor(auth: Basic);
    /**
     * Retrieve version information and other application properties
     * @returns {Promise<ApplicationProperties>} Promise with the application properties data
     */
    get(): Promise<ApplicationProperties>;
}
