import { SvelteComponentTyped } from "svelte"; import type { ILabel } from '../interfaces/ILabel'; declare const __propDef: { props: { [x: string]: any; menu?: ILabel[]; noPaddingBody?: boolean; }; events: { addLabel: CustomEvent; clickMenu: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: { viewOptions: number; }; }; }; 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 {};