export const ViewStrategies: { label: string; value: string; }[]; export const BaseTilesets: ({ label: string; value: null; } | { label: string; value: string; })[]; export const TopologySources: { label: string; value: string; }[]; export const PoliticalBoundaryTilesets: ({ label: string; value: null; } | { label: string; value: string; })[]; export const PoliticalLabelTilesets: ({ label: string; value: null; } | { label: string; value: string; })[]; export const LegendPositionOptions: { label: string; value: string; }[]; export const LegendBehaviorOptions: { label: string; value: string; }[]; export const monospacedFontSize: "10pt"; /** * An SVG image of an arrow pointing right, meeting with a vertical line at the arrow's point. */ export const svgArrowRightToLine: "\n \n \n \n \n "; /** * An SVG image of an arrow pointing left, away from a vertical line at the arrow's base. */ export const svgArrowLeftFromLine: "\n \n \n \n \n \n "; /** * The default tooltip markup to render for nodes. */ export const defaultNodeTooltip: "\n
\n ${name}\n
\n
\n \n \n \n \n \n ${inValue}\n
\n
\n \n \n \n \n \n \n ${outValue}\n
\n"; /** * The initial/default markup to render for custom node tooltip markup. */ export const defaultCustomNodeTooltip: "\n
\n ${name}\n
\n
\n In Volume: ${inValue}\n
\n
\n Out Volume: ${outValue}\n
\n"; /** * The initial/default markup to render for custom edge tooltip markup. */ export const defaultCustomEdgeTooltip: "\n
\n \n ${forward.from} → ${forward.to}\n
\n Rate: ${forward.dataPoint}\n
\n
\n
\n \n ${reverse.from} → ${reverse.to}\n
\n Rate: ${reverse.dataPoint}\n
\n
\n"; /** * The default tooltip markup to render for edges. */ export const defaultEdgeTooltip: "\n
\n \n ${forward.from} → ${forward.to}\n
\n \n \n \n \n \n ${forward.dataPoint}\n
\n
\n
\n \n ${reverse.from} → ${reverse.to}\n
\n \n \n \n \n \n ${reverse.dataPoint}\n
\n
\n"; export const LayerOptions: { label: string; value: number; }[]; //# sourceMappingURL=options.d.ts.map