import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, SlotProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "section"; export interface InnerCardProps extends SlotProps, InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * Whether or not the card take up the width of its container. */ fluid?: ResponsiveProp; /** * The orientation of the card. */ orientation?: ResponsiveProp<"horizontal" | "vertical">; /** * A card can vary in size. */ size?: ResponsiveProp<"xs" | "sm" | "md" | "lg" | "xl">; /** * The style to use. */ variant?: "elevated" | "outline"; } export declare function InnerCard({ as, children, fluid, forwardedRef, orientation, size, variant, ...rest }: InnerCardProps): JSX.Element; export declare namespace InnerCard { var defaultElement: string; } /** * A card group information into a container to let users browse a group of related items and actions. * * [Documentation](https://orbit.sharegate.design/?path=/docs/card--default-story) */ export declare const Card: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type CardProps = ComponentProps; export {};