/** @typedef {typeof __propDef.props}  SiPolyworkProps */
/** @typedef {typeof __propDef.events}  SiPolyworkEvents */
/** @typedef {typeof __propDef.slots}  SiPolyworkSlots */
export default class SiPolywork extends SvelteComponent<{
    color?: string | undefined;
    size?: number | undefined;
    title?: string | undefined;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type SiPolyworkProps = typeof __propDef.props;
export type SiPolyworkEvents = typeof __propDef.events;
export type SiPolyworkSlots = 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 {};
