import Action from './action.svelte'; type ActionProps = { order?: number; do?: () => void; undo?: () => void; actions?: Array<() => void>; }; declare const Action: import("svelte").Component; type Action = ReturnType; export default Action;