import type { PropsWithIsTabledAttribute } from '../../../interfaces/renderProps.interface'; interface UrlFieldProps extends PropsWithIsTabledAttribute { linkId: string; itemType: string; input: string; feedback: string; feedbackSeverity?: 'error' | 'warning'; displayPrompt: string; displayUnit: string; entryFormat: string; readOnly: boolean; instructionsId: string | undefined; onInputChange: (value: string) => void; } declare function UrlField(props: UrlFieldProps): import("react/jsx-runtime").JSX.Element; export default UrlField;