import type { ComponentPropsWithoutRef, FC, ReactNode } from "react"; import { Actions } from "./Actions"; type StaticComponents = { Actions: typeof Actions; }; type Props = ComponentPropsWithoutRef<"div"> & { children?: ReactNode; }; export declare const TopBar: FC & StaticComponents; export {};