import { Options } from "../../core";
import { Any, AnyObject, WindowOperatorInput } from "../../types";
/**
 * Last observation carried forward. Sets values for null and missing fields in a window to the last non-null value for the field.
 */
export declare const $locf: (_: AnyObject, collection: AnyObject[], expr: WindowOperatorInput, options: Options) => Any;
