/// import { A11yProps } from '../_utils/interfaces'; import { NormalizeProps } from '../layout/layoutNormalizer'; export declare type ItineraryProps = A11yProps & NormalizeProps & Readonly<{ children: Array; small?: boolean; }>; export declare const Itinerary: ({ children, small, ...props }: ItineraryProps) => JSX.Element;