import { ChildProperty, Property } from '@syncfusion/ej2-base'; /** * Interface for a class BackstageBackButton */ export interface BackstageBackButtonModel { /** * Specifies the text for backstage back button. * * @default '' */ text?: string; /** * Specifies the icon css class for backstage back button. * * @default '' */ iconCss?: string; /** * Specifies whether to show the backstage back button or not. * * @default true */ visible?: boolean; }