@abgov/react-components
Version:
Government of Alberta - UI components for React
18 lines (17 loc) • 551 B
TypeScript
import { ReactNode } from 'react';
interface WCProps {
testid?: string;
}
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"goa-app-footer-meta-section": WCProps & React.HTMLAttributes<HTMLElement>;
}
}
}
export interface GoabAppFooterMetaSectionProps {
testId?: string;
children?: ReactNode;
}
export declare function GoabAppFooterMetaSection({ testId, children, }: GoabAppFooterMetaSectionProps): import("react/jsx-runtime").JSX.Element;
export default GoabAppFooterMetaSection;