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 PreStandardizedRefinementTriggerProps = BaseContainerProps & { instanceId?: OpaqueSearchInstanceId | string; productIndexId?: string; willFetchProductIndex?: boolean; isSelected?: boolean; refinementId?: string; value?: string; }; export declare type BaseRefinementTriggerProps = WithMediaQueryInnerProps>; export declare type RefinementTriggerProps = WithConditionalProps & WithDataTextProps, 'isSelected' | 'willFetchProductIndex'>, 'productIndexId' | 'refinementId' | 'value'>; export declare const RefinementTrigger: FC; export default RefinementTrigger;