import { SvelteComponentTyped } from "svelte"; import type MaterialIcons from '../../types/material-icons'; import { type ActionArray } from '../../utils/useActions'; declare const __propDef: { props: { [x: string]: any; use?: ActionArray | undefined; icon: MaterialIcons; label?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type ActionProps = typeof __propDef.props; export declare type ActionEvents = typeof __propDef.events; export declare type ActionSlots = typeof __propDef.slots; export default class Action extends SvelteComponentTyped { } export {};