import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, SlotProps, StyledComponentProps } from "../../shared"; declare const DefaultElement = "div"; export interface InnerContentProps extends SlotProps, InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; } export declare function InnerContent({ as, children, forwardedRef, ...rest }: InnerContentProps): JSX.Element; export declare namespace InnerContent { var defaultElement: string; } /** * A placeholder for a content section. * * [Documentation](https://orbit.sharegate.design/?path=/docs/content--example) */ export declare const Content: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type ContentProps = ComponentProps; export {};