import type { SxProps } from '@mui/material'; import * as React from 'react'; export interface ApiReferenceSectionProps { children: React.ReactNode[]; sx?: SxProps; } declare const ApiReferenceSection: ({ children, sx, ...rest }: ApiReferenceSectionProps) => JSX.Element; export default ApiReferenceSection;