import { PropsWithChildren, ReactElement } from 'react'; /** * Props for the {@link ScaffolderField} component * @alpha */ export interface ScaffolderFieldProps { rawDescription?: string; errors?: ReactElement; rawErrors?: string[]; help?: ReactElement; rawHelp?: string; required?: boolean; disabled?: boolean; displayLabel?: boolean; } /** * A component to wrap up a input field which helps with formatting and supporting markdown * on the field types * @alpha */ export declare const ScaffolderField: (props: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;