import { PipeTransform } from '@angular/core'; export declare class FinancePipe implements PipeTransform { static DEFAULT_FORMAT: string; transform(value: number, format?: string, isNeedPlus?: boolean): string; format(value: number, format: string): string; }