///
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: Record;
events: {
[evt: string]: CustomEvent;
};
slots: {};
};
export type UserSelectionProps = typeof __propDef.props;
export type UserSelectionEvents = typeof __propDef.events;
export type UserSelectionSlots = typeof __propDef.slots;
export default class UserSelection extends SvelteComponentTyped {
}
export {};