import { Property } from "./observable";
/**
 Creates a constant property with value `x`.
 */
export default function constant<V>(x: V): Property<V>;
