import { ReactNode } from 'react';
import { ExternalSubjectSynchronize } from './types';
export declare function useExternalSubjectSynchronize(): ExternalSubjectSynchronize;
interface ExternalSubjectSynchronizerProps {
    children: ReactNode;
}
export default function ExternalSubjectSynchronizer({ children }: ExternalSubjectSynchronizerProps): JSX.Element;
export {};
