* If MyComponent takes children, it will receive them here.
* ;
* ```
*
* It takes an optional `clientOnly` prop:
*
* - By default or when set to `false`, the component will be rendered on the server and hydrated in
* the browser. In this case, children are passed to the component.
* - When set to `true`, the component will be rendered only in the browser, skipping the server-side
* rendering step. This is useful for components that cannot be rendered on the server. In this
* case, children are used as a placeholder until the component is hydrated.
*/
export declare function Island