/** * Copyright 2022 Gravwell, Inc. All rights reserved. * * Contact: [legal@gravwell.io](mailto:legal@gravwell.io) * * This software may be modified and distributed under the terms of the MIT * license. See the LICENSE file for details. */ import { Actionable, ActionableAction, ActionableTimeVariable, ActionableTrigger } from './actionable'; import { ActionableCommand } from './actionable-command'; import { RawActionable, RawActionableAction, RawActionableTimeVariable, RawActionableTrigger } from './raw-actionable'; import { RawActionableCommand } from './raw-actionable-command'; export declare const toActionable: (raw: RawActionable) => Actionable; export declare const toActionableTrigger: (raw: RawActionableTrigger) => ActionableTrigger; export declare const toActionableAction: (raw: RawActionableAction) => ActionableAction; export declare const toActionableCommand: (raw: RawActionableCommand) => ActionableCommand; export declare const toActionableTimeVariable: (raw: RawActionableTimeVariable) => ActionableTimeVariable;