export declare type TExecuteType = 'external' | 'internal' | 'return';
export declare type TVarType = 'string' | 'number';
export interface IExc {
    type: TExecuteType;
    value: string;
    arg: any;
}
export interface IVar {
    name: string;
    type?: TVarType;
    value: any;
}
declare type TExecute = IExc[];
export declare type TVars = IVar[];
export default TExecute;
