import { type ReactNode } from "react"; type Props = { children: ReactNode; inline?: boolean; onlyWhen?: boolean; }; export declare function UnderConstruction(props: Props): import("react/jsx-runtime").JSX.Element; export {};