import React from 'react'; import type { DataSourceDefinition } from '@splunk/dashboard-types'; import { type ResolvedSearchProps } from './resolvedSearch'; type ActionButtonWrapperProps = { onOpenSearchClick: (definition: DataSourceDefinition | null) => void; screenReaderText: string; disabled: boolean; } & ResolvedSearchProps; export declare const ActionButtonWrapper: React.MemoExoticComponent<({ onOpenSearchClick, screenReaderText, disabled, dataSourceId, dataSourceDef, dashboardApi, }: ActionButtonWrapperProps) => JSX.Element>; export {}; //# sourceMappingURL=ActionButtonWrapper.d.ts.map