@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.
11 lines (10 loc) • 609 B
TypeScript
/// <reference types="react" />
import type { Props } from "./types";
import type * as Common from "../common/types";
export declare const StyledCard: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
spaceAfter?: Common.SpaceAfterSizes | undefined;
margin?: Props["margin"];
}, never>;
declare const Card: ({ title, titleAs, icon, actions, description, children, labelClose, dataTest, id, onClose, loading, margin, header, spaceAfter, dataA11ySection, }: Props) => JSX.Element;
export default Card;
export { default as CardSection } from "./CardSection";