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