/// import { AppContextInterface } from './interface'; interface ISyncProps { stateChange: (options: AppContextInterface) => void; } declare function Sync({ stateChange }: ISyncProps): JSX.Element; export default Sync;