import { OnChanges, SimpleChanges } from '@angular/core'; import { AbstractText } from '../abstract-text'; export declare class RefreshTextComponent extends AbstractText implements OnChanges { refreshing: boolean; suffix: string; value: string; ngOnChanges(simpleChanges: SimpleChanges): void; /** * Start a timer on click. If there is no value change * returned, end the refresh period and end the refreshing status * manually */ refresh(): void; }