/** aturi's mark, from in the canonical catalog. */
declare const aturiIconSvg: string;
/** aturiExplore's mark, from in the canonical catalog. */
declare const aturiExploreIconSvg: string;
/** anisota's mark, from in the canonical catalog. */
declare const anisotaIconSvg: string;
/** bluesky's mark, from in the canonical catalog. */
declare const blueskyIconSvg: string;
/** bluepy's mark, from in the canonical catalog. */
declare const bluepyIconSvg: string;
/** blacksky's mark, from in the canonical catalog. */
declare const blackskyIconSvg: string;
/** reddwarf's mark, from in the canonical catalog. */
declare const reddwarfIconSvg: string;
/** impro's mark, from in the canonical catalog. */
declare const improIconSvg: string;
/** lea's mark, from in the canonical catalog. */
declare const leaIconSvg: string;
/** leaflet's mark, from in the canonical catalog. */
declare const leafletIconSvg: string;
/** pdsls's mark, from in the canonical catalog. */
declare const pdslsIconSvg: string;
/** anisotaReader's mark, the same one `anisotaIconSvg` carries. */
declare const anisotaReaderIconSvg: string;
/** atptools's mark, from in the canonical catalog. */
declare const atptoolsIconSvg: string;
/** witchsky's mark, from in the canonical catalog. */
declare const witchskyIconSvg: string;
/** deer's mark, from in the canonical catalog. */
declare const deerIconSvg: string;
/** mu's mark, from in the canonical catalog. */
declare const muIconSvg: string;
/** northsky's mark, from in the canonical catalog. */
declare const northskyIconSvg: string;
/** tangled's mark, from in the canonical catalog. */
declare const tangledIconSvg: string;
/** pinksky's mark, from in the canonical catalog. */
declare const pinkskyIconSvg: string;
/** margin's mark, from in the canonical catalog. */
declare const marginIconSvg: string;
/** semble's mark, from in the canonical catalog. */
declare const sembleIconSvg: string;
/** streamplace's mark, from in the canonical catalog. */
declare const streamplaceIconSvg: string;
/** grain's mark, from in the canonical catalog. */
declare const grainIconSvg: string;
/** popfeed's mark, from in the canonical catalog. */
declare const popfeedIconSvg: string;
/** sifa's mark, from in the canonical catalog. */
declare const sifaIconSvg: string;
/** blento's mark, from in the canonical catalog. */
declare const blentoIconSvg: string;
/** offprint's mark, from in the canonical catalog. */
declare const offprintIconSvg: string;
/** pckt's mark, from in the canonical catalog. */
declare const pcktIconSvg: string;
/** standardReader's mark, from in the canonical catalog. */
declare const standardReaderIconSvg: string;
/** taproot's mark, from in the canonical catalog. */
declare const taprootIconSvg: string;
/**
* Every waypoint's brand mark as standalone SVG markup, keyed by waypoint id.
*
* Keys match `WAYPOINT_ORDER` in `waypoints.data`; every id in that list has
* an entry here.
*/
declare const WAYPOINT_ICON_SVGS: Record;
/**
* The SVG markup for a waypoint's brand mark, or `undefined` for an id the
* catalog does not carry.
*
* Every id in `WAYPOINT_ORDER` has a mark, so this only returns `undefined` for
* an id that is not a waypoint at all. The `typeof` guard is what keeps an
* arbitrary caller-supplied string off `Object.prototype`: a plain lookup of
* `"toString"` would otherwise hand back a function.
*/
declare function getWaypointIconSvg(id: string): string | undefined;
export { WAYPOINT_ICON_SVGS, anisotaIconSvg, anisotaReaderIconSvg, atptoolsIconSvg, aturiExploreIconSvg, aturiIconSvg, blackskyIconSvg, blentoIconSvg, bluepyIconSvg, blueskyIconSvg, deerIconSvg, getWaypointIconSvg, grainIconSvg, improIconSvg, leaIconSvg, leafletIconSvg, marginIconSvg, muIconSvg, northskyIconSvg, offprintIconSvg, pcktIconSvg, pdslsIconSvg, pinkskyIconSvg, popfeedIconSvg, reddwarfIconSvg, sembleIconSvg, sifaIconSvg, standardReaderIconSvg, streamplaceIconSvg, tangledIconSvg, taprootIconSvg, witchskyIconSvg };