import type { BaseComponent } from "../base";
/**
 * Sentinel component type emitted by the backend when a component has no
 * known renderer on this client. `Node` skips rendering and falls back to
 * the component's `fallback` child (if present) instead.
 */
export interface FallbackHeaderProps extends BaseComponent {
    type: "fallback_header";
}
