import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "div"; export interface InnerIllustratedMessageProps extends InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * The orientation of the illustrated message. */ orientation?: ResponsiveProp<"horizontal" | "vertical">; } export declare function InnerIllustratedMessage({ as, children, forwardedRef, orientation, ...rest }: InnerIllustratedMessageProps): JSX.Element; export declare namespace InnerIllustratedMessage { 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 IllustratedMessage: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type IllustratedMessageProps = ComponentProps; export {};