interface EndNote { /** * Title of the note item */ title: string; /** * Contents of the note as a markdown string */ text: string; } interface Props { /** * An array of endnote items. */ notes: EndNote[]; } /** * End-of-story notes such as Sources or Edited by, rendered from an array of title and markdown pairs. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-text-elements-endnotes--docs) */ declare const EndNotes: import("svelte").Component; type EndNotes = ReturnType; export default EndNotes;