import type { SVGAttributes } from "svelte/elements"; interface Props extends SVGAttributes { size?: "xs" | "sm" | "md" | "lg" | "xl"; role?: string; class?: string; ariaLabel?: string; } /** * [Go to docs](https://runes-webkit.codewithshin.com/) * ## Props * @props: size: any = ctx.size || "md"; * @props:role: any; * @props:class: string; * @props:ariaLabel: any = "accessibility icon"; */ declare const Accessibility: import("svelte").Component; type Accessibility = ReturnType; export default Accessibility;