import { SvelteComponentTyped } from "svelte"; export interface PencilIconProps { svgAttrs?: SVGProps; } import type { SVGProps } from "../types"; declare const __propDef: { props: { svgAttrs?: PencilIconProps["svgAttrs"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; type PencilIconProps_ = typeof __propDef.props; export type PencilIconEvents = typeof __propDef.events; export type PencilIconSlots = typeof __propDef.slots; export default class PencilIcon extends SvelteComponentTyped { } export {};