import { ReactElement } from 'react'; export interface LinkEditorFormField { value: T; onChange: (value: T) => void; placeholder?: string; label: string; error: { hasError?: boolean; helperText?: string; }; } export interface LinkEditorFormProps { mode: 'inline' | 'modalEmbedded'; url: LinkEditorFormField; name?: Omit, 'error'>; tooltip?: Omit, 'error'>; newTabOpen: Omit, 'error'>; renderVariables?: Omit, 'error'>; } export declare const LinkEditorForm: (props: LinkEditorFormProps) => ReactElement; //# sourceMappingURL=LinkEditorForm.d.ts.map