declare const moneySideList: readonly ["buy", "sell"]; export declare type IMoneySide = typeof moneySideList[number]; export declare const isIMoneySide: (d: any) => d is "buy" | "sell"; export {};