import { PipeTransform } from "@angular/core"; /** * Provides a pipe that prints correctly formatted price. */ export declare class SalaxyPricePipe implements PipeTransform { /** * The Transform method that implements the Pipe * @param value - value that we want to display as price. */ transform(value: any): any; }