/// export declare type MemberParam = { userValue: T; serverValue: T; setUserValue: React.Dispatch>; defaults: T; isChanged: (idx?: number) => boolean; validator: () => string[]; setValidator: (...args: any[]) => void; options: { [key: string]: any; }; }; export declare type APIParam = { value: T | string; isExpr: boolean; };