import { EventEmitter } from '@angular/core'; import { PageEvent } from '@angular/material/paginator'; import { Code } from '@mtna/pojo-consumer-ui'; /** * Codes Table Component to display codes in a table with pagination. * * @author Zach Edwards */ export declare class RdsCodesTableComponent { /** Required codes to display */ codes: Array; /** The length of the total number of codes that are being paginated */ length: number; /** Number of codes to display on a page */ pageSize: number; /** The zero-based page index of the displayed list of codes */ pageIndex: number; /** Event emitted when the paginator changes the page size or page index */ pageChange: EventEmitter; displayedColumns: string[]; }