import { SvelteComponentTyped } from "svelte"; import type { JanusJS } from 'janus-gateway-ts'; declare const __propDef: { props: { server: JanusJS.ConstructorOptions['server']; apisecret?: JanusJS.ConstructorOptions['apisecret']; withCredentials?: JanusJS.ConstructorOptions['withCredentials']; token?: JanusJS.ConstructorOptions['token']; iceServers?: JanusJS.ConstructorOptions['iceServers']; ipv6?: JanusJS.ConstructorOptions['ipv6']; maxPollEvents?: JanusJS.ConstructorOptions['max_poll_events']; debug?: JanusJS.InitOptions['debug']; dependencies?: JanusJS.InitOptions['dependencies']; }; events: { connect: CustomEvent; error: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: { janus: JanusJS.Janus; }; error: { error: Error; }; }; }; export declare type IndexProps = typeof __propDef.props; export declare type IndexEvents = typeof __propDef.events; export declare type IndexSlots = typeof __propDef.slots; export default class Index extends SvelteComponentTyped { } export {};