import * as React from "react";
declare type CarouselItemProps = {
    isShowing: boolean;
    children?: React.ReactNode;
    height: string;
    outOfFocusDarken: boolean;
};
export declare const CarouselItem: (props: CarouselItemProps) => JSX.Element;
export {};
