/** * AiPage Component * * Simple branded placeholder page for the /ai route across all app shells. * Shows product-specific AI branding with a "coming soon" state. */ export interface AiPageProps { /** Display name of the product (e.g., "VibeControls", "FluidGrids") */ productName: string; /** Machine-readable product identifier (e.g., "vibecontrols", "fluidgrids") */ productId: string; } export declare function AiPage({ productName, productId }: AiPageProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=AiPage.d.ts.map