import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; selected?: any[] | undefined; clear?: (() => void) | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type PeriodicTableProps = typeof __propDef.props; export declare type PeriodicTableEvents = typeof __propDef.events; export declare type PeriodicTableSlots = typeof __propDef.slots; export default class PeriodicTable extends SvelteComponentTyped { get clear(): () => void; } export {};