import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, SlotProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "div"; export interface InnerIllustrationProps extends SlotProps, InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * The orientation of the illustration. */ orientation?: ResponsiveProp<"horizontal" | "vertical">; /** * The illustration shape. */ shape?: "straight" | "rounded"; } export declare function InnerIllustration({ as, children, forwardedRef, orientation, shape, ...rest }: InnerIllustrationProps): JSX.Element; export declare namespace InnerIllustration { var defaultElement: string; } /** * An illustration compose an image with a background color. Use an illustration as an hero in a modal. * * [Documentation](https://orbit.sharegate.design/?path=/docs/illustration--default-story) */ export declare const Illustration: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type IllustrationProps = ComponentProps; export {};