@glance-networks/agent-plugin
Version:
Glance Networks Agent Plugin
46 lines (45 loc) • 1.35 kB
TypeScript
import { SvelteComponent } from "svelte";
type IconSize = {
[key: string]: string;
};
export declare const getTailwindSpacing: () => IconSize;
export declare const ICON_SIZES: IconSize;
declare const __propDef: {
props: {
[x: string]: any;
size?: string | number | undefined;
role?: string | undefined;
withEvents?: boolean | undefined;
title?: {
id?: string;
title?: string;
} | undefined;
desc?: {
id?: string;
desc?: string;
} | undefined;
ariaLabel?: string | undefined;
};
events: {
click: MouseEvent;
keydown: KeyboardEvent;
keyup: KeyboardEvent;
focus: FocusEvent;
blur: FocusEvent;
mouseenter: MouseEvent;
mouseleave: MouseEvent;
mouseover: MouseEvent;
mouseout: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
exports?: undefined;
bindings?: undefined;
};
export type TextMessageLightProps = typeof __propDef.props;
export type TextMessageLightEvents = typeof __propDef.events;
export type TextMessageLightSlots = typeof __propDef.slots;
export default class TextMessageLight extends SvelteComponent<TextMessageLightProps, TextMessageLightEvents, TextMessageLightSlots> {
}
export {};