import type { ComponentType } from 'react';
import { PropsWithChildren } from 'react';
export declare namespace Statusbar {
    const Provider: ComponentType<{
        children?: import("react").ReactNode;
    }>, Portal: ComponentType<import("react").HTMLProps<HTMLDivElement>>, Slot: ComponentType<{
        children?: import("react").ReactNode;
    }>;
    function Root({ children }: PropsWithChildren<{}>): import("react/jsx-runtime").JSX.Element;
    type StatusProps = PropsWithChildren<{
        icon?: ComponentType;
    }>;
    function Status({ children, icon }: StatusProps): import("react/jsx-runtime").JSX.Element;
}
