@trussworks/react-uswds
Version:
React USWDS 3.0 component library
9 lines (8 loc) • 382 B
TypeScript
import { default as React } from 'react';
export type ExtendedNavLinksType = React.ReactNode[][];
type FooterExtendedNavListProps = {
isMobile?: boolean;
nestedLinks: ExtendedNavLinksType;
};
export declare const FooterExtendedNavList: ({ className, isMobile, nestedLinks, }: FooterExtendedNavListProps & React.HTMLAttributes<HTMLElement>) => React.ReactElement;
export {};