/** * User indication of whether an entity is visible. Propagates down the entity hierarchy. * @see https://docs.rs/bevy/0.15.3/bevy/render/view/enum.Visibility.html * * See {@link ComputedVisibility} */ export declare class Visibility { value: 'inherited' | 'hidden' | 'visible'; constructor(value?: 'inherited' | 'hidden' | 'visible'); }