import { SvelteComponentTyped } from "svelte"; export interface LeftArrowIconProps { svgAttrs?: SVGProps; } import { SVGProps } from "../types"; declare const __propDef: { props: { svgAttrs?: LeftArrowIconProps["svgAttrs"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type LeftArrowProps = typeof __propDef.props; export type LeftArrowEvents = typeof __propDef.events; export type LeftArrowSlots = typeof __propDef.slots; export default class LeftArrow extends SvelteComponentTyped { } export {};