import { SvelteComponentTyped } from "svelte"; export interface EyeIconProps { svgAttrs?: SVGProps; } import type { SVGProps } from "../types"; declare const __propDef: { props: { svgAttrs?: EyeIconProps["svgAttrs"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; type EyeIconProps_ = typeof __propDef.props; export type EyeIconEvents = typeof __propDef.events; export type EyeIconSlots = typeof __propDef.slots; export default class EyeIcon extends SvelteComponentTyped { } export {};