import type { PropsWithIsTabledAttribute } from '../../../interfaces/renderProps.interface'; interface AttachmentUrlFieldProps extends PropsWithIsTabledAttribute { linkId: string; url: string; readOnly: boolean; onUrlChange: (url: string) => void; } declare function AttachmentUrlField(props: AttachmentUrlFieldProps): import("react/jsx-runtime").JSX.Element; export default AttachmentUrlField;