UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

22 lines (21 loc) 667 B
import { ReactNode } from 'react'; interface WCProps { maxcolumncount?: number; heading?: string; testid?: string; } declare module "react" { namespace JSX { interface IntrinsicElements { "goa-app-footer-nav-section": WCProps & React.HTMLAttributes<HTMLElement>; } } } export interface GoabFooterNavSectionProps { maxColumnCount?: number; heading?: string; testId?: string; children?: ReactNode; } export declare function GoabAppFooterNavSection({ heading, maxColumnCount, testId, children, }: GoabFooterNavSectionProps): import("react/jsx-runtime").JSX.Element; export default GoabAppFooterNavSection;