import type { SvelteComponentTyped } from 'svelte' import type { Component } from '../../component' interface ActionsProps extends Component {} type ActionsEvents = { mount: CustomEvent } /** * @description Comment Actions * @example * * Reply * Save * Hide * * * Full-screen * * * * * Reply * Save * Hide * * * Full-screen * * */ export default class Actions extends SvelteComponentTyped< ActionsProps, ActionsEvents > {}