import { Signature } from './types'; export interface StateChannelApi { login(): Promise; sign({ channelId, scriptHash, message }: { channelId: string, scriptHash: string, message: string }): Promise; }