import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { items?: any[]; }; events: { [evt: string]: CustomEvent; }; slots: { default: { onDelete: () => void; onAdd: (template: any) => () => void; }; add: { onDelete: (item: any, index: any) => () => void; onAdd: (template: any) => () => void; }; }; }; export declare type NewActionsProps = typeof __propDef.props; export declare type NewActionsEvents = typeof __propDef.events; export declare type NewActionsSlots = typeof __propDef.slots; export default class NewActions extends SvelteComponentTyped { } export {};