import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { tag: any; context?: any[] | undefined; id: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type ServerStaticSlotProps = typeof __propDef.props; export declare type ServerStaticSlotEvents = typeof __propDef.events; export declare type ServerStaticSlotSlots = typeof __propDef.slots; export default class ServerStaticSlot extends SvelteComponentTyped { } export {};