import { ReactNode } from 'react'; export interface AppShellContextValue { /** Product display name (e.g., "VibeControls", "FluidGrids") */ productName: string; /** Product slug (e.g., "vibecontrols", "fluidgrids") */ productSlug: string; /** Brand initial for logos (e.g., "VC", "FG") */ brandInitial: string; /** Product tagline */ tagline: string; /** Product domain (e.g., "vibecontrols.com") */ domain?: string; } export declare function AppShellContextProvider({ value, children, }: { value: AppShellContextValue; children: ReactNode; }): import("react/jsx-runtime").JSX.Element; export declare function useAppShell(): AppShellContextValue; //# sourceMappingURL=AppShellContext.d.ts.map