/**
 * Popup metadata.
 */
export interface PopupMetadata {
    /**
     * URL title.
     */
    title?: string;

    /**
     * URL description.
     */
    description?: string;

    /**
     * Key of a document containing popup content.
     */
    contentKey?: string;
}