// generated by diplomat-tool import type { FixedDecimal } from "./FixedDecimal" import type { FixedDecimalParseError } from "./FixedDecimalParseError" import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** See the [Rust documentation for `PluralOperands`](https://docs.rs/icu/latest/icu/plurals/struct.PluralOperands.html) for more information. */ export class PluralOperands { get ffiValue(): pointer; static fromString(s: string): PluralOperands; static fromFixedDecimal(x: FixedDecimal): PluralOperands; }