import { ReactNode } from "react"; interface MemoChildrenProps { deps?: unknown[]; children?: ReactNode; } export declare function MemoChildren({ deps, children, }: MemoChildrenProps): import("react").JSX.Element; export {};