import type { Input as BaseInput } from "../components/ebay-dialog-base/index.marko";
import type { WithNormalizedProps } from "../../global";
import type { AttrString } from "marko/tags-html";
static interface AlertDialogInput extends Omit<BaseInput, `on${string}`> {
    "confirm-text"?: AttrString;
    "on-open"?: () => void;
    "on-close"?: () => void;
    "on-confirm"?: () => void;
    confirm?: Marko.AttrTag<Marko.Input<`h${number}`> & {
        renderBody?: Marko.Body;
    }>;
}
export interface Input extends WithNormalizedProps<AlertDialogInput> {
}
