export declare class DxpCmsData { /** * (required) The Id of the site to fetch data from */ siteId: string; /** * (required) The key of the data to fetch */ dataKey: string; /** * (optional) The fallback key to use if the dataKey is not found */ fallbackKey?: string; /** * (optional) The text to display when no value is found for the given site and key. Default "N/A". */ placeHolder: string; /** * (optional) The key of the site data to fetch. Default: "Scheduled". */ siteDataKey: 'Scheduled'; value: any; private cmsDataUpdateHandler; connectedCallback(): void; disconnectedCallback(): void; componentWillLoad(): Promise; componentWillRender(): void; private updateData; render(): any; }