UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

12 lines (11 loc) 390 B
import * as React from "react"; interface Context { setWidths: React.Dispatch<React.SetStateAction<number[]>>; calculatedWidth: number; } export declare const ItineraryContext: React.Context<Context>; export declare const ItineraryProvider: ({ children, }: { children: React.ReactNode; }) => React.ReactElement<Context>; export declare const useWidth: () => Context; export {};