import { Target } from 'redux-beacon';
/** Options for the redux-beacon Matomo tag manager */
export interface IMatomoTagManagerOptions {
    /** The dataLayer used for pushing events and variables. By default '_mtm' */
    dataLayerName?: string;
}
declare const MatomoTagManager: ({ dataLayerName }?: IMatomoTagManagerOptions) => Target;
export default MatomoTagManager;
