/** @typedef {typeof __propDef.props}  SiQuestProps */
/** @typedef {typeof __propDef.events}  SiQuestEvents */
/** @typedef {typeof __propDef.slots}  SiQuestSlots */
export default class SiQuest extends SvelteComponent<{
    color?: string | undefined;
    size?: number | undefined;
    title?: string | undefined;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type SiQuestProps = typeof __propDef.props;
export type SiQuestEvents = typeof __propDef.events;
export type SiQuestSlots = typeof __propDef.slots;
import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        color?: string | undefined;
        size?: number | undefined;
        title?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export {};
