{"version":3,"file":"stepnavigationitem.d.ts","sources":["stepnavigationitem.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["import { TemplateRef } from '@angular/core';\r\n/**\r\n * The stepnavigation item represents an item that is rendered inside the step navigation component\r\n **/\r\nexport declare class CloStepNavigationItem {\r\n    templateRef: TemplateRef<any>;\r\n    /**\r\n     * The Title of the step navigation item\r\n     */\r\n    title: string;\r\n    /**\r\n     * The Subtitle of the step navigation item:\r\n     * If this includes a date, send this as \"Status change date\"\r\n     * Without the colon\r\n     */\r\n    subtitle: string;\r\n    /**\r\n     * The date (if any) to attach to the subtitle\r\n     */\r\n    date: string;\r\n    /**\r\n     * Set this to 'true' if this is the selected state\r\n     */\r\n    selected: boolean;\r\n    /**\r\n     * Set this to 'true' if the state is complete\r\n     */\r\n    completed: boolean;\r\n    constructor(templateRef: TemplateRef<any>);\r\n    setSelected(state: boolean): void;\r\n}\r\n"]}