import { OnInit } from '@angular/core'; import { BasePaginationComponent } from './base-pagination'; /** A simple "load more" pagination button. * @inheritdoc * */ export declare class LoadMorePaginationComponent extends BasePaginationComponent implements OnInit { /** * Text to show on the button. *Defaults to 'Load more'.* */ buttonText: string; /** Sets style of button. Choose from: `'primary' | 'primary-alt' | 'destructive' | 'neutral' | 'secondary' | 'link' | 'link-inline'`. * *Defaults to `'secondary'`.* */ buttonStyle: string; private _style; _loadNextPage(): void; }