import { CSSProperties } from "react"; export interface CarouseProps { src: ImageCarouseProps[]; style?: CSSProperties; type?: string; className?: string; } export interface ImageCarouseProps { url: string; caption: string; width: string | number; height: string | number; } //# sourceMappingURL=CarouseProps.d.ts.map