import type * as t from '@babel/types'; import type * as babel from '@babel/core'; /** * Handles JSX elements on the server side. * * On the server, the children of should be removed since they * are client-only code. Only the fallback prop (if present) will be rendered. * * Transform: * }>{clientOnlyContent} * Into: * } /> * * Or if no fallback: * {clientOnlyContent} * Into: * */ export declare function handleClientOnlyJSX(path: babel.NodePath, _opts: { env: 'server'; }): void;