import { SvelteComponentTyped } from "svelte"; import type { IconProps } from '../types.js'; declare const __propDef: { props: IconProps; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type MessageQuestionProps = typeof __propDef.props; export type MessageQuestionEvents = typeof __propDef.events; export type MessageQuestionSlots = typeof __propDef.slots; export default class MessageQuestion extends SvelteComponentTyped { } export {};