/**
 * Parsed ACTION command
 *
 * @see ./actionCommandParser.ts for more details
 * @public exported from `@promptbook/editable`
 */
export type ActionCommand = {
    readonly type: 'ACTION';
};
