import { IListingConfig } from '../../interfaces/listing.interface'; import { Element } from '../element'; export declare const LISTING_CONFIG_VERSION: { V1: string; V2: string; }; export declare class ListingConfig extends Element { constructor(...args: any); static get TYPE(): string; get config(): IListingConfig | null; static get ATTRIBUTES(): { CONFIG: string; TYPE_OF_USAGE: string; DEFAULT_ACTIVE: string; CONFIG_VERSION: string; ELEMENT_NAME: string; ARCHIVED: string; ELEMENT_PARENT: string; }; static get SHORTNAME(): string; }