export declare const StopOrderDirection: { readonly STOP_ORDER_DIRECTION_UNSPECIFIED: "STOP_ORDER_DIRECTION_UNSPECIFIED"; readonly STOP_ORDER_DIRECTION_BUY: "STOP_ORDER_DIRECTION_BUY"; readonly STOP_ORDER_DIRECTION_SELL: "STOP_ORDER_DIRECTION_SELL"; }; export type StopOrderDirection = 'STOP_ORDER_DIRECTION_UNSPECIFIED' | 0 | 'STOP_ORDER_DIRECTION_BUY' | 1 | 'STOP_ORDER_DIRECTION_SELL' | 2; export type StopOrderDirection__Output = typeof StopOrderDirection[keyof typeof StopOrderDirection];