File: /var/dev/shahnamag/front-end/node_modules/@angular/cdk/number-property.d-ce316715.d.ts
/**
* Type describing the allowed values for a number input
* @docs-private
*/
type NumberInput = string | number | null | undefined;
/** Coerces a data-bound value (typically a string) to a number. */
declare function coerceNumberProperty(value: any): number;
declare function coerceNumberProperty<D>(value: any, fallback: D): number | D;
/**
* Whether the provided value is considered a number.
* @docs-private
*/
declare function _isNumberValue(value: any): boolean;
export { type NumberInput as N, _isNumberValue as _, coerceNumberProperty as c };