@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
16 lines (15 loc) • 427 B
TypeScript
import { type FormFieldProps } from "../useFormField.js";
/**
* Handles props for Fieldset in context with parent Fieldset.
*/
export declare const useFieldset: (props: FormFieldProps, legendId: string) => {
inputProps: {
"aria-labelledby": any;
};
showErrorMsg: boolean;
hasError: boolean;
errorId: string;
inputDescriptionId: string;
size: "small" | "medium";
readOnly?: boolean;
};