/**
 * @author WMXPY
 * @namespace Operation_VariableDeclaration
 * @description Declare
 */
export type DeclareVariableElement = {
    readonly id: string;
    readonly value: any;
};
