lune-ui-lib
Version:
Lune UI Components Library
9 lines (8 loc) • 316 B
TypeScript
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;