import { Swipe } from "../../../../hooks/useSwipe";
import { type SlideContent as Content } from "./SlideContent";
export interface SlideContainer {
    contents?: Content[];
    vertical?: boolean;
    offset?: number;
    unit?: "%" | "vw" | "vh" | "em" | "rem";
    style?: object;
    swipe?: Swipe;
}
export default function SlideContainer(props: SlideContainer): import("react").JSX.Element;
//# sourceMappingURL=SlideContainer.d.ts.map