import { default as React } from 'react'; /** * @internal */ export type SiteBuildGameSurfaceProps = { className?: string | undefined; children?: React.ReactNode | undefined; }; /** * A container element used to render the SiteBuildGame surface. This component * will take care of styling your component so it looks good rendered * in the build game modal on your site build in the Netlify UI. * * @param props * @see Surfaces.SiteBuildGame * @example * ```tsx * import { SiteBuildGameSurface } from "@netlify/sdk/react/components"; * * *
Your surface content goes here
*
* ``` * @internal */ export declare const SiteBuildGameSurface: ({ className, children, ...otherProps }: SiteBuildGameSurfaceProps) => React.JSX.Element; //# sourceMappingURL=SiteBuildGameSurface.d.ts.map