@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) • 484 B
TypeScript
import React from "react";
import type * as Common from "../../../common/types";
interface Props extends Common.Globals {
readonly children: React.ReactNode;
readonly expanded: boolean;
readonly expandable: boolean;
readonly onExpand?: Common.Callback;
readonly actions?: React.ReactNode;
}
declare const AccordionSectionHeader: ({ children, actions, expanded, onExpand, expandable, dataTest, }: Props) => React.JSX.Element;
export default AccordionSectionHeader;