import type { Input as CarouselInput } from "../index.marko";
import type { Input as TextboxInput } from "../../ebay-textbox/index.marko";
export interface Input {
    items: number;
    index: number;
    itemsPerSlide: number;
    gap: number;
    a11yPreviousText: string;
    a11yNextText: string;
}
export interface State {
    index?: number;
}
class {
    declare state: State;
    onCreate(): void { return 1 as any; }
    declare onMove: CarouselInput["on-move"];
    declare handleChange: TextboxInput["on-input-change"];
}
