import { CompositeActionStructure } from '../../../types/composite-action-structure'; /** * Type guard to check if a value conforms to the CompositeActionStructure * interface. * * @param value - The value to check. * @returns True if the value is a valid composite action structure. */ export declare function isCompositeActionStructure(value: unknown): value is CompositeActionStructure;