@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.
9 lines (8 loc) • 434 B
TypeScript
import React from "react";
import type { Props } from "./types";
export declare const StyledAccordion: import("styled-components").StyledComponent<"div", any, {
spaceAfter?: Props["spaceAfter"];
}, never>;
declare const Accordion: ({ children, dataTest, id, spaceAfter, expandedSection, loading, onExpand, }: Props) => React.JSX.Element;
export default Accordion;
export { default as AccordionSection } from "./AccordionSection";