import "./Card.css"; import { ComponentProps, ElementType, ForwardedRef, ReactNode } from "react"; export interface InnerCardProps { /** * The orientation of the card. */ orientation?: "horizontal" | "vertical"; /** * A card can vary in size. */ size?: "xs" | "sm" | "md" | "lg" | "xl"; /** * Whether or not the card take up the width of its container. */ fluid?: boolean; /** * An HTML element type or a custom React element type to render as. */ as?: ElementType; /** * Default slot override. */ slot?: string; /** * React children. */ children: ReactNode; /** * @ignore */ forwardedRef: ForwardedRef; } export declare function InnerCard({ orientation, size, fluid, as, children, forwardedRef, ...rest }: InnerCardProps): JSX.Element; export declare const Card: import("../../shared").OrbitComponent; export declare type CardProps = ComponentProps;