import type { Input as BaseInput } from "../components/ebay-dialog-base/index.marko";
import type { WithNormalizedProps } from "../../global";
static interface ToastDialogInput extends Omit<BaseInput, `on${string}`> {
    "on-open"?: () => void;
    "on-close"?: () => void;
}
export interface Input extends WithNormalizedProps<ToastDialogInput> {
}
