@navinc/base-react-components
Version:
Nav's Pattern Library
18 lines (17 loc) • 772 B
TypeScript
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;