import { SvelteComponentTyped } from "svelte"; export interface ExclamationTriangleProps { svgAttrs?: SVGProps; } import { SVGProps } from "../types"; declare const __propDef: { props: { svgAttrs?: ExclamationTriangleProps["svgAttrs"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; type ExclamationTriangleProps_ = typeof __propDef.props; export type ExclamationTriangleEvents = typeof __propDef.events; export type ExclamationTriangleSlots = typeof __propDef.slots; export default class ExclamationTriangle extends SvelteComponentTyped { } export {};