interface Item { title: string; body?: string; image?: string; icon?: string; color?: string; href?: string; horizontal?: boolean; cta?: string; arrow?: boolean; } interface CardsProps { columns?: number; children: { properties: Item; }[]; gap?: number; } export default function Cards({ children, columns, gap }: CardsProps): import("react/jsx-runtime").JSX.Element | null; export {};