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 declare type PreStandardizedRefinementSearchTriggerProps = BaseContainerProps & { instanceId?: OpaqueSearchInstanceId | string; searchComponentId?: string; willFetchSearchIndex?: boolean; isSelected?: boolean; refinementId?: string; value?: string; }; export declare type BaseRefinementSearchTriggerProps = WithMediaQueryInnerProps>; export declare type RefinementSearchTriggerProps = WithConditionalProps & WithDataTextProps, 'isSelected' | 'willFetchSearchIndex'>, 'refinementId' | 'searchComponentId' | 'value'>; export declare const RefinementSearchTrigger: FC; export default RefinementSearchTrigger;