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