export interface FooterWaitlistButtonProps { className?: string; } /** * Small wrapper around JoinWaitlistButton for use inside the footer. * * Routes through the host's unified-navigation hook * (`runtime.navigation.navigate`) when a `ChatRuntimeContext` is * mounted — that's the same path EVERY other in-app navigation * surface uses (source chips, inline cards, search-autocomplete, * action cards). One rule, one decision tree across the whole app. * The hub's `HubRuntimeProvider` wires `navigate` to its `useUnifiedNav` * helper, so this button picks up cross-platform new-tab decisions, * same-URL re-scroll handling, embed-mode short-circuiting, and any * future host-side nav rules for free. * * Falls back to the embed-shim's `router.push` when no runtime is * mounted (third-party embedders who haven't set up * `ChatRuntimeContext` — the lib stays usable without forcing them * to wire the full chat-runtime). * * Target URL: `/waitlist#top`. `#top` is the canonical "scroll to * page top" anchor — the destination page has an explicit * `
` at the top of `
` so native browser anchor * scroll works in every browser regardless of the HTML5 magic-anchor * behavior. */ export declare function FooterWaitlistButton({ className }: FooterWaitlistButtonProps): import("react").JSX.Element; //# sourceMappingURL=footer-waitlist-button.d.ts.map