export declare const StopOrderStatusOption: { readonly STOP_ORDER_STATUS_UNSPECIFIED: "STOP_ORDER_STATUS_UNSPECIFIED"; readonly STOP_ORDER_STATUS_ALL: "STOP_ORDER_STATUS_ALL"; readonly STOP_ORDER_STATUS_ACTIVE: "STOP_ORDER_STATUS_ACTIVE"; readonly STOP_ORDER_STATUS_EXECUTED: "STOP_ORDER_STATUS_EXECUTED"; readonly STOP_ORDER_STATUS_CANCELED: "STOP_ORDER_STATUS_CANCELED"; readonly STOP_ORDER_STATUS_EXPIRED: "STOP_ORDER_STATUS_EXPIRED"; }; export type StopOrderStatusOption = 'STOP_ORDER_STATUS_UNSPECIFIED' | 0 | 'STOP_ORDER_STATUS_ALL' | 1 | 'STOP_ORDER_STATUS_ACTIVE' | 2 | 'STOP_ORDER_STATUS_EXECUTED' | 3 | 'STOP_ORDER_STATUS_CANCELED' | 4 | 'STOP_ORDER_STATUS_EXPIRED' | 5; export type StopOrderStatusOption__Output = typeof StopOrderStatusOption[keyof typeof StopOrderStatusOption];