import { default as React } from 'react'; export type SiteConfigurationSurfaceProps = { className?: string | undefined; children?: React.ReactNode | undefined; }; /** * A container element used to render the top-level Project Configuration surface. This component * will take care of styling your component so it looks good as a project section listed under the * top-level navigation for projects in the Netlify UI. * * * * @param props * @see Surfaces.SiteConfiguration * @example * ```tsx * import { SiteConfigurationSurface } from "@netlify/sdk/react/components"; * * *
Your surface content goes here
*
* ``` */ export declare const SiteConfigurationSurface: ({ className, children, ...otherProps }: SiteConfigurationSurfaceProps) => React.JSX.Element; //# sourceMappingURL=SiteConfigurationSurface.d.ts.map