import { default as React } from 'react'; export type SiteAccessConfigurationSurfaceProps = { /** * 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 Access Configuration surface. This component will * take care of styling your component so it looks good in the **Project Configuration > Access & security** section in the Netlify UI. * * * * @param props * @see Surfaces.SiteAccessConfiguration * @example * ```tsx * import { SiteAccessConfigurationSurface } from "@netlify/sdk/react/components"; * * *
Your surface content goes here
*
* ``` */ export declare const SiteAccessConfigurationSurface: ({ className, children, ...otherProps }: SiteAccessConfigurationSurfaceProps) => React.JSX.Element; //# sourceMappingURL=SiteAccessConfigurationSurface.d.ts.map