@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.
14 lines (13 loc) • 701 B
TypeScript
/// <reference types="react" />
import type { Props } from "./types";
export declare const ModalHeading: import("styled-components").StyledComponent<"h2", any, {}, never>;
export declare const StyledModalHeader: import("styled-components").StyledComponent<"div", any, {
suppressed?: Props["suppressed"];
isMobileFullPage?: boolean | undefined;
illustration?: boolean | undefined;
}, never>;
export declare const MobileHeader: import("styled-components").StyledComponent<"div", any, {
isMobileFullPage?: boolean | undefined;
}, never>;
declare const ModalHeader: ({ illustration, suppressed, children, description, title, dataTest, }: Props) => JSX.Element;
export default ModalHeader;