import { TCallables } from '../types/callable';
export declare enum INSTANT_COMMANDS {
    LENGTH = "len",
    ARRAY = "array",
    PUSH = "push",
    UNSHIFT = "unshift",
    GET = "get",
    FIRST_ELEMENT = "car",
    REST_ELEMENT = "cdr",
    SUM = "sum"
}
export declare const instants: TCallables;
export declare const instantList: string[];
