UNPKG

@abgov/react-components

Version:

Government of Alberta - UI components for React

18 lines (17 loc) 539 B
/// <reference types="react" /> interface WCProps { ref?: React.RefObject<HTMLElement | null>; heading?: string; } declare module "react" { namespace JSX { interface IntrinsicElements { "goa-public-form-summary": WCProps & React.HTMLAttributes<HTMLElement>; } } } interface GoabPublicFormSummaryProps { heading?: string; } export declare function GoabPublicFormSummary({ heading, }: GoabPublicFormSummaryProps): import("react/jsx-runtime").JSX.Element; export default GoabPublicFormSummary;