import { Facet } from '../types'; /** * Creates a nonwritable barebones static facet to be used when you need an initial facet value outside the react context * that's meant to be replaced later by a real facet. Ex: with `createContext()` */ export declare function createStaticFacet(value: T): Facet;