import * as React from "react"; export interface SearchHeroProps extends Omit, 'title'> { title: string | React.ReactNode; subtitle?: string | React.ReactNode; placeholder?: string; searchValue?: string; onSearchChange?: (value: string) => void; cards?: React.ReactNode; searchIcon?: React.ReactNode; maxWidth?: string; customStyles?: { root?: React.CSSProperties; title?: React.CSSProperties; subtitle?: React.CSSProperties; searchContainer?: React.CSSProperties; }; } /** * SearchHero component for centered search interfaces * * Used in: * - Help center * - Documentation search * - Product search pages * * @example * ```tsx * * } title="Tutorial Videos" /> * } title="Sales Support" /> * } title="Technical Support" /> * * } * /> * ``` */ export declare const SearchHero: React.ForwardRefExoticComponent>; //# sourceMappingURL=search-hero.d.ts.map