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