export declare type OkUnion = Ok; /** An object of this type is returned on a successful function call for certain functions */ export interface Ok { _: 'ok'; }