import { Records } from 'jmini';
declare namespace useRemote {
type Methods = {
bridge<K = Records>(key: string, message?: K): void;
catch<T = any>(key: string): T | undefined;
};
}
declare const useRemote: useRemote.Methods;
export { useRemote, useRemote as default };