import type { SVGAttributes } from "svelte/elements"; type TitleType = { id?: string; title?: string; }; type DescType = { id?: string; desc?: string; }; interface BaseProps extends SVGAttributes { size?: "xs" | "sm" | "md" | "lg" | "xl"; role?: string; color?: string; class?: string; } interface Props extends BaseProps { title?: TitleType; desc?: DescType; ariaLabel?: string; size?: "xs" | "sm" | "md" | "lg" | "xl"; } /** * [Go to docs](https://runes-webkit.codewithshin.com/) * ## Props * @props: size: any = ctx.size || "md"; * @props:role: any; * @props:color: any = ctx.color || "currentColor"; * @props:title: any; * @props:desc: any; * @props:class: string; * @props:ariaLabel: any = "dots horizontal outline"; */ declare const DotsHorizontalOutline: import("svelte").Component; type DotsHorizontalOutline = ReturnType; export default DotsHorizontalOutline;