export function Toggle({ isToggleOpen, trackingContext: { context, category, type, options, ...payload }, children, }: {
    isToggleOpen?: boolean | undefined;
    trackingContext?: {
        context?: string | undefined;
        category?: string | undefined;
        type?: string | undefined;
        options: any;
    } | undefined;
    children: any;
}): any;
export function COVID19Resources({ shouldShowSBAApplicationAndCalculatorSection, shouldShowBothSBAApplicationAndCalculator, shouldHideNavCaresActSection, className, links, }: {
    shouldShowSBAApplicationAndCalculatorSection: any;
    shouldShowBothSBAApplicationAndCalculator?: any;
    shouldHideNavCaresActSection?: boolean | undefined;
    className: any;
    links?: {} | undefined;
}): JSX.Element;
