/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { PipeTransform } from '@angular/core';
import { IntlService } from './intl.service';
import { NumberFormatOptions } from '@progress/kendo-intl';
import * as i0 from "@angular/core";
/**
* Formats a number value to a string based on the requested format.
* This pipe uses the [`IntlService`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice).
*
* @example
* ```ng-template-no-run
*
* - {{decimal | kendoNumber:'c' }}
* - {{stringNumber | kendoNumber:'p' }}
* - {{int | kendoNumber:'##.00' }}
*
* ```
*/
export declare class NumberPipe implements PipeTransform {
private intlService;
/**
* @hidden
*/
constructor(intlService: IntlService);
/**
* Converts a `Number` object into a string based on the specified format.
* If no format is provided, the value is formatted as decimal number using the
* [`"n"`](https://github.com/telerik/kendo-intl/blob/master/docs/num-formatting/index.md#standard) format.
*
* @param value - The number that will be formatted.
* @param format - The format string or options (optional).
* @param localeId - The locale ID that will be used in place of the default one (optional).
* @returns The formatted number as a string.
*/
transform(value: any, format?: string | NumberFormatOptions, localeId?: string): any;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵpipe: i0.ɵɵPipeDeclaration;
}