import { FC } from 'react'; import { SystemProps } from "../../../lib"; import { status } from "../StatusMessage"; export interface InputWrapperProps extends SystemProps { statusMessage?: string; id?: string; label?: string; status?: status; error?: string; } export declare const InputWrapper: FC;