export interface SectionLoadingIndicatorProps { /** Custom color for the loading indicator */ color?: string; } declare const SectionLoadingIndicator: ({ color }: SectionLoadingIndicatorProps) => JSX.Element; export default SectionLoadingIndicator;