import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; interface DedicatedSearchLandingTemplateProps { /** Page title — string or rich node (e.g. styled heading). */ title: React.ReactNode; /** Primary search control (typically {@link DedicatedSearchUrlComposer}). */ composer: React.ReactNode; /** Optional block below composer (e.g. {@link DedicatedSearchRecents}). */ trailing?: React.ReactNode; /** Forwarded to {@link ListPageViewFrame}. */ maxWidthClassName?: string; frameClassName?: string; gutterClassName?: string; } /** * Centered dedicated-search landing — empty `?q=` shell (hero title + composer + optional trailing). */ declare function DedicatedSearchLandingTemplate({ title, composer, trailing, maxWidthClassName, frameClassName, gutterClassName, }: DedicatedSearchLandingTemplateProps): react_jsx_runtime.JSX.Element; export { DedicatedSearchLandingTemplate, type DedicatedSearchLandingTemplateProps };