/** * Return this from any Observable callback to skip assigning the callback's output as the new * observable value. * * @category Observable */ export declare const noUpdate: unique symbol; /** * Type guards the input as not including {@link noUpdate}. * * @category Internal */ export declare function isNotNoUpdate(input: T): input is ExcludeNoUpdate; /** * Remove {@link noUpdate} from the given union. * * @category Internal */ export type ExcludeNoUpdate = Exclude, typeof noUpdate>; /** * Union {@link noUpdate} with the given type. * * @category Internal */ export type AllowNoUpdate = Value | typeof noUpdate;