intervention-pages
Version:
23 lines (22 loc) • 838 B
TypeScript
import { LitElement } from 'lit-element';
import '@unicef-polymer/etools-content-panel/etools-content-panel';
import { InterventionOverview } from './interventionOverview.models';
declare const DetailsOverview_base: (new (...args: any[]) => {
_storeUnsubscribe: import("redux").Unsubscribe;
connectedCallback(): void;
disconnectedCallback(): void;
stateChanged(_state: unknown): void;
readonly isConnected: boolean;
}) & typeof LitElement;
/**
* @customElement
*/
export declare class DetailsOverview extends DetailsOverview_base {
static get styles(): import("lit-element").CSSResult[];
render(): import("lit-element").TemplateResult;
interventionOverview: InterventionOverview;
connectedCallback(): void;
stateChanged(state: any): void;
private _getText;
}
export {};