import type { SupportedLocale } from "../../../Engine.js";
import type { SettingOptions, SettingSell } from "../../../settings/Settings.js";
import { TextButton, type TextButtonOptions } from "../TextButton.js";
import type { UiComponent } from "../UiComponent.js";
export type SellButtonOptions = ThisType<SellButton> & TextButtonOptions;
export declare class SellButton extends TextButton {
    readonly options: SellButtonOptions;
    readonly setting: SettingSell;
    constructor(parent: UiComponent, setting: SettingSell, locale: SettingOptions<SupportedLocale>, options?: SellButtonOptions);
    toString(): string;
}
//# sourceMappingURL=SellButton.d.ts.map