UNPKG

@intersect.mbo/govtool-delegation-pillar

Version:
8 lines (7 loc) 330 B
/// <reference types="react" /> import type { InputBaseProps } from '@mui/material'; export type InputProps = InputBaseProps & { dataTestId?: string; errorMessage?: string; }; export declare const Input: import("react").ForwardRefExoticComponent<Omit<InputProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;