export declare abstract class ApplicationCommandNumericOptionMinMaxValueMixin { readonly max_value?: number; readonly min_value?: number; /** * Sets the maximum number value of this option * * @param max - The maximum value this option can be */ abstract setMaxValue(max: number): this; /** * Sets the minimum number value of this option * * @param min - The minimum value this option can be */ abstract setMinValue(min: number): this; } //# sourceMappingURL=ApplicationCommandNumericOptionMinMaxValueMixin.d.ts.map