/// import { AppGuidePage } from '../../interfaces/interfaces'; import { PropertyValues } from 'lit'; import { JsxNode, PublicLitElement as LitElement, TargetedEvent } from '@arcgis/lumina'; /** The `instant-apps-app-guide` is a component containing page(s) that describe features of a tool or Instant App. */ export declare class InstantAppsAppGuide extends LitElement { /** * Show a header with the title of the current page * * @default true */ header: boolean; /** * A collection of AppGuidePage objects that represent the content of the component * * @required */ data: AppGuidePage[]; }