import { CantonContextValue } from '../providers/CantonProvider';
export type { CantonContextValue as UseCantonReturn };
/**
* Hook for Canton Network operations
*
* @example
* ```tsx
* function MyComponent() {
* const { isRegistered, registerCanton, sendCantonCoin } = useCanton();
*
* if (!isRegistered) {
* return ;
* }
*
* return ;
* }
* ```
*/
export declare function useCanton(): CantonContextValue;