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