import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../libs/fsresponsive'; import type { FC } from 'react'; import type { OpaqueSearchInstanceId } from '../../common/models/unique-props'; import type { WithConditionalProps, WithDataBooleanProps, WithDataTextProps } from '../../frameworks/property-binding'; import type { BaseContainerProps, StandardContainerProps } from '../../models'; export interface PreStandardizedBaseSearchZoneProps extends BaseContainerProps { instanceId?: OpaqueSearchInstanceId | string; searchComponentId?: string; term: string | undefined; fetchBrand: boolean; fetchCategory: boolean; fetchProduct: boolean; fetchQuery: boolean; fetchResults: boolean; } export declare type BaseSearchZoneProps = WithMediaQueryInnerProps>; export declare type SearchZoneProps = WithConditionalProps & WithDataBooleanProps, 'searchComponentId' | 'term'>, 'fetchBrand' | 'fetchCategory' | 'fetchProduct' | 'fetchQuery'>; export declare const SearchZone: FC; export default SearchZone;