/**
 * Provides display information.
 *
 * @export
 * @class DisplayInfo
 */
export declare class DisplayInfo {
    /**
     * Gets the localized name.
     *
     * @type {string}
     * @memberof DisplayInfo
     */
    name?: string;
    /**
     * Gets the localized description.
     *
     * @type {string}
     * @memberof DisplayInfo
     */
    description?: string;
    /**
     * Gets the localized prompt.
     *
     * @type {string}
     * @memberof DisplayInfo
     */
    prompt?: string;
    /**
     * Gets the localized short name.
     *
     * @type {string}
     * @memberof DisplayInfo
     */
    shortName?: string;
}
