import React from 'react'; import './styles.css'; export type PagedownProps = { className?: string; disabled?: boolean; name?: string; defaultValue?: string; onUpdate?: (value: string) => void; requestProps: Record; onFocus: (value: Event) => void; useV2EmbedPicker: boolean; placeholder?: string; customChooseFromAssetsModal?: React.ComponentType; }; declare const PagedownEditor: React.MemoExoticComponent<(props: PagedownProps) => React.JSX.Element>; export default PagedownEditor;