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