import type { DrawParams } from 'svelte/transition'; import type { SVGAttributes } from 'svelte/elements'; type TitleType = { id?: string; title?: string; }; type DescType = { id?: string; desc?: string; }; interface Props extends SVGAttributes { pauseDuration?: number; event?: 'hover' | 'click' | 'none'; title?: TitleType; desc?: DescType; ariaLabel?: string; size?: number; color?: string; strokeWidth?: number; transitionParams?: DrawParams; focusable?: 'true' | 'false' | 'auto'; } declare const SuperscriptFlowbite: import("svelte").Component; type SuperscriptFlowbite = ReturnType; export default SuperscriptFlowbite;