import { SvelteComponent } from "svelte";
import type { ParticipantsGroup } from '../../../type/Data/ParticipantsGroup.ts';
declare const __propDef: {
    props: {
        group: ParticipantsGroup;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type ParticipantsGroupSelectProps = typeof __propDef.props;
export type ParticipantsGroupSelectEvents = typeof __propDef.events;
export type ParticipantsGroupSelectSlots = typeof __propDef.slots;
export default class ParticipantsGroupSelect extends SvelteComponent<ParticipantsGroupSelectProps, ParticipantsGroupSelectEvents, ParticipantsGroupSelectSlots> {
}
export {};
