@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) • 433 B
TypeScript
/// <reference types="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) => JSX.Element;
export default Accordion;
export { default as AccordionSection } from "./AccordionSection";