import React, { ReactNode } from "react"; interface RawChildrenProps { children: ReactNode; } export declare function RawChildren({ children }: RawChildrenProps): React.JSX.Element; export {};