import { ReactNode } from 'react';
export interface HashTriggerProps {
/**
* HashTrigger content.
*/
children: ReactNode;
/**
* Id, which is passed to first child element/component.
* Child component has to inject id to DOM itself.
* It's used to detect element on page where to scroll.
*/
id: string;
/**
* Callback called when hash matches.
*/
onMatch?: (id: string) => void;
/**
* Scroll to element on match.
* @default true
*/
scrollOnMatch?: boolean;
}
export declare const HashTrigger: (props: HashTriggerProps) => import("react/jsx-runtime").JSX.Element;