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