@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
10 lines (9 loc) • 399 B
TypeScript
import React from "react";
export interface FormSummaryAnswersProps extends React.HTMLAttributes<HTMLDListElement> {
/**
* Must include one or more of `<FormSummary.Answer>`.
*/
children: React.ReactNode;
}
export declare const FormSummaryAnswers: React.ForwardRefExoticComponent<FormSummaryAnswersProps & React.RefAttributes<HTMLDListElement>>;
export default FormSummaryAnswers;