/** * The bubble template's pre-chat state. * * Same design language as the full-page hero — token-driven type, radii and tile treatment — * but laid out for a narrow popup: a badged logo, a single heading, and starter prompts in a * two-column grid. Kept separate from `HeroSection` because the two genuinely differ in * composition, not just in size, and merging them would mean a component that is mostly * branching on which surface it is on. */ type WelcomeSectionProps = { welcomeMessage?: string; starterPrompts: string[]; titleBackgroundColor?: string; titleTextColor?: string; botMessageTextColor?: string; starterPromptFontSize?: number; onPromptClick: (prompt: string) => void; }; export declare const WelcomeSection: (props: WelcomeSectionProps) => import("solid-js").JSX.Element; export {};