import { ComponentProps } from '@hitagi/utils/types'; import React from 'react'; import Box from '../Box'; type SlickProps = { children: React.ReactNode; initialSlide?: number; } & ComponentProps; export default function Slick(props: SlickProps): JSX.Element; export {};