/** Autogenerated by public2business schematic. DO NOT CHANGE! */ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; export declare type SbbNavigationPageChangeEvent = 'next' | 'previous'; export declare class SbbNavigation implements OnChanges { /** The next page descriptor. */ nextPage: string | null; /** The previous page descriptor. */ previousPage: string | null; /** This event can be used by parent components to handle events on page change. */ pageChange: EventEmitter; ngOnChanges(changes: SimpleChanges): void; }