import type * as CandidApi from "../../../index"; /** * String representation of a Decimal that can be parsed by most libraries. */ export type Decimal = string & { Decimal: void; }; export declare function Decimal(value: string): CandidApi.Decimal;