export declare const isString: (x: unknown) => x is string;
export declare const isObject: (x: unknown) => x is object;
