/** * Copyright 2022 Gravwell, Inc. All rights reserved. * * Contact: [legal@gravwell.io](mailto:legal@gravwell.io) * * This software may be modified and distributed under the terms of the MIT * license. See the LICENSE file for details. */ declare const Percentage_base: import("@lucaspaganini/value-objects").VOFloatConstructor; /** Floating point number with two decimal digits from 0.00 to 100.00. */ export declare class Percentage extends Percentage_base { constructor(raw: RawPercentage); static from(raw: RawPercentage): Percentage; toString(): string; } /** Floating point number from 0 to 1. */ export declare type RawPercentage = number; export declare const isPercentage: (v: any) => v is Percentage; export {};