import { SvelteComponentTyped } from "svelte"; export declare const CARD_ACTIONS_CONTEXT_ID = "card-actions-context-id"; import { type ActionArray } from '../../utils/useActions'; declare const __propDef: { props: { [x: string]: any; use?: ActionArray | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type ActionsProps = typeof __propDef.props; export declare type ActionsEvents = typeof __propDef.events; export declare type ActionsSlots = typeof __propDef.slots; export default class Actions extends SvelteComponentTyped { } export {};