import { ReactNode, default as React } from 'react'; import { ManageLocationsContextType } from '../types'; interface ManageLocationsProviderProps { children: ReactNode; } export declare function ManageLocationsProvider({ children, }: ManageLocationsProviderProps): React.JSX.Element; export declare function useManageLocationsContext(): ManageLocationsContextType; export {};