import { ReactNode } from "react"; /** @deprecated use ReactNode from React instead */ export type Children = ReactNode; export type Props = Record & { children?: ReactNode; }; export declare function create(tag: string, props: Props): string; export declare function guard(value: T | undefined | string, cb: (value: T) => ReactNode): string | number | bigint | boolean | import("react").ReactElement> | Iterable | Promise> | Iterable | null | undefined>; export declare function render(children: ReactNode): string | number | bigint | boolean | import("react").ReactElement> | Iterable | Promise> | Iterable | null | undefined>; export declare function toString(value: any): string | undefined;