7 lines
298 B
TypeScript
7 lines
298 B
TypeScript
import { BoxProps } from '../../primitives/Box';
|
|
export interface CarouselImageProps extends BoxProps<'img'> {
|
|
alt: string;
|
|
src: string;
|
|
}
|
|
export declare const CarouselImage: (props: CarouselImageProps) => import("react/jsx-runtime").JSX.Element;
|
|
//# sourceMappingURL=CarouselImage.d.ts.map
|