import { SvelteComponentTyped } from "svelte"; export interface InfoIconProps { svgAttrs?: SVGProps; } import { SVGProps } from "../types"; declare const __propDef: { props: { svgAttrs?: InfoIconProps["svgAttrs"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; type InfoIconProps_ = typeof __propDef.props; export type InfoIconEvents = typeof __propDef.events; export type InfoIconSlots = typeof __propDef.slots; export default class InfoIcon extends SvelteComponentTyped { } export {};