import { SvelteComponent } from "svelte";
import type { ParticipantsGroup } from '../../../type/Data/ParticipantsGroup.ts';
declare const __propDef: {
    props: {
        group: ParticipantsGroup;
    };
    events: {
        click: MouseEvent;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type ModalContentParticipantsGroupsChecklistProps = typeof __propDef.props;
export type ModalContentParticipantsGroupsChecklistEvents = typeof __propDef.events;
export type ModalContentParticipantsGroupsChecklistSlots = typeof __propDef.slots;
export default class ModalContentParticipantsGroupsChecklist extends SvelteComponent<ModalContentParticipantsGroupsChecklistProps, ModalContentParticipantsGroupsChecklistEvents, ModalContentParticipantsGroupsChecklistSlots> {
}
export {};
