index.cjs.d.ts 859 B

1234567891011121314151617181920212223
  1. /// <reference types="react" />
  2. import { compiler } from './';
  3. declare const _default: import("react").FC<{
  4. [key: string]: any;
  5. children: string;
  6. options?: Partial<{
  7. createElement: (tag: string | import("react").FunctionComponent<{}> | import("react").ComponentClass<{}, any>, props: JSX.IntrinsicAttributes, ...children: import("react").ReactChild[]) => JSX.Element;
  8. disableParsingRawHTML: boolean;
  9. forceBlock: boolean;
  10. forceInline: boolean;
  11. namedCodesToUnicode: {
  12. [key: string]: string;
  13. };
  14. overrides: import("./").MarkdownToJSX.Overrides;
  15. wrapper: import("react").ElementType<any>;
  16. forceWrapper: boolean;
  17. slugify: (source: string) => string;
  18. enforceAtxHeadings: boolean;
  19. }>;
  20. }> & {
  21. compiler: typeof compiler;
  22. };
  23. export default _default;