import { SvelteComponent } from "svelte"; import { Levels } from '../common/enums/Levels'; import { type Css } from '@sxxov/ut/css'; declare const __propDef: { props: { level?: Levels; colourOverride?: Css | undefined; tabindex?: number; }; events: { click: MouseEvent; keydown: KeyboardEvent; keyup: KeyboardEvent; keypress: KeyboardEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type HintProps = typeof __propDef.props; export type HintEvents = typeof __propDef.events; export type HintSlots = typeof __propDef.slots; export default class Hint extends SvelteComponent { } export {};