type MarkdownType = 'bold' | 'italic' | 'strikethrough' | 'emoji' | 'mention-here' | 'mention-user' | 'mention-short' | 'mention-report' | 'link' | 'code' | 'pre' | 'blockquote' | 'h1' | 'syntax' | 'inline-image' | 'codeblock'; interface MarkdownRange { type: MarkdownType; start: number; length: number; depth?: number; syntaxType?: 'opening' | 'closing'; } type InlineImagesInputProps = { addAuthTokenToImageURLCallback?: (url: string) => string; imagePreviewAuthRequiredURLs?: string[]; }; export type { MarkdownType, MarkdownRange, InlineImagesInputProps }; //# sourceMappingURL=commonTypes.d.ts.map