import { default as React } from 'react'; export type SiteBuildDeployConfigurationSurfaceProps = { /** * Content to render within the element. */ children?: React.ReactNode | undefined; /** * A class property to attach to the element. * * @see {@link !Element.className} */ className?: string | undefined; }; /** * A container element used to render the Project Build & Deploy Configuration surface. This component * will take care of styling your component so it looks good in the ** Project configuration > Build & deploy** * section of the Netlify UI. * * * * @param props * @see Surfaces.SiteBuildDeployConfiguration * @example * ```tsx * import { SiteBuildDeployConfigurationSurface } from "@netlify/sdk/react/components"; * * *
Your surface content goes here
*
* ``` */ export declare const SiteBuildDeployConfigurationSurface: ({ className, children, ...otherProps }: SiteBuildDeployConfigurationSurfaceProps) => React.JSX.Element; //# sourceMappingURL=SiteBuildDeployConfigurationSurface.d.ts.map