@intersect.mbo/govtool-delegation-pillar
Version:
Delegation Pillar of the GovTool project
8 lines (7 loc) • 330 B
TypeScript
/// <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>>;