/** * A string reference. * * @TJS-type string */ export declare type IStatus = 'active' | 'inactive'; export declare const isIStatus: (d: any) => d is IStatus;