import { Value } from './Value';
export declare class ValueTrig {
    static sin(x: Value): Value;
    static cos(x: Value): Value;
    static tan(x: Value): Value;
    static asin(x: Value): Value;
    static acos(x: Value): Value;
    static atan(x: Value): Value;
}
