import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../../libs/fsresponsive'; import type { FC } from 'react'; import type { OpaqueSearchInstanceId } from '../../../common/models/unique-props'; import type { WithConditionalProps, WithDataNumberProps, WithDataTextProps } from '../../../frameworks/property-binding'; import type { BaseContainerProps, StandardContainerProps } from '../../../models'; export interface PreStandardizedSubmitSearchTrigger extends BaseContainerProps { instanceId?: OpaqueSearchInstanceId | string; searchComponentId?: string; searchTerm?: string; limit?: number; page?: number; nextCursor?: string; } export declare type BaseSubmitSearchTriggerProps = WithMediaQueryInnerProps>; export declare type SubmitSearchTriggerProps = WithConditionalProps & WithDataTextProps, 'limit' | 'page'>, 'nextCursor' | 'searchComponentId' | 'searchTerm'>; export declare const SubmitSearchTrigger: FC; export default SubmitSearchTrigger;