import { SvelteComponentTyped } from "svelte"; import type { IContact } from '../interfaces/IContact'; declare const __propDef: { props: { contacts?: IContact[]; active?: number; }; events: { selected: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type ContactListProps = typeof __propDef.props; export declare type ContactListEvents = typeof __propDef.events; export declare type ContactListSlots = typeof __propDef.slots; export default class ContactList extends SvelteComponentTyped { } export {};