import React from 'react'; /** * * The BrowserPreview component is used to render the content wrapped in the * * browser frame for preview purposes. * * @example * * import BrowserPreview from "@bigbinary/neeto-molecules/BrowserPreview"; * * const Component = () => ( * *
* * This is the body of the browser preview * *
*
* ); * @endexample */ declare const BrowserPreview: React.FC<{ wrapperClassName?: string; className?: string; children?: React.ReactNode; }>; export { BrowserPreview as default };