alinea
Version:
Headless git-based CMS
16 lines (15 loc) • 708 B
TypeScript
import type { ComponentType } from 'react';
import type { PropsWithChildren } from 'react';
export declare namespace Statusbar {
const Provider: ComponentType<{
children?: import("react").ReactNode | undefined;
}>, Portal: ComponentType<import("react").HTMLProps<HTMLDivElement>>, Slot: ComponentType<{
children?: import("react").ReactNode | undefined;
}>;
function Root({ children }: PropsWithChildren<{}>): import("react/jsx-runtime").JSX.Element;
interface StatusProps extends PropsWithChildren {
icon?: ComponentType;
onClick?: () => void;
}
function Status({ children, icon, onClick }: StatusProps): import("react/jsx-runtime").JSX.Element;
}