import { Sprite } from "@flashport/flashport";
import { KButton } from "./KButton";
/**
    * ...
    * @author Kenny Lerma
    */
export declare class KAlert extends Sprite {
    private _messageTxt;
    private _okBTN;
    private _cancelBTN;
    constructor(message: string, maxWidth?: number);
    private OnAddedToStage;
    get okBTN(): KButton;
    get cancelBTN(): KButton;
    set hideCancel(value: boolean);
}
