/** @jsxImportSource @opentui/react */ import { type ReactNode } from "react"; import type { AppServices } from "../../../ui-core/bootstrap/composition-root.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; export interface IntroCardProps { readonly services: AppServices; readonly theme: Theme; readonly width?: number | undefined; } export declare function IntroCard(props: IntroCardProps): ReactNode;