import React from 'react'; declare type LoadingSectionProps = { children: React.ReactNode; customSpinner?: React.ReactNode; }; declare function LoadingSection({ children, customSpinner }: LoadingSectionProps): JSX.Element; declare namespace LoadingSection { var PrimaryText: ({ children }: LoadingSectionProps) => JSX.Element; var SecondaryText: ({ children }: LoadingSectionProps) => JSX.Element; } export default LoadingSection;