@abgov/react-components
Version:
Government of Alberta - UI components for React
17 lines (16 loc) • 507 B
TypeScript
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;