import { Shh } from 'web3-shh';
import { Signer } from 'did-jwt';
interface Account {
    address: string;
    signer: Signer;
}
interface Options {
    payload: any;
    request: any;
    response: any;
}
declare function post(shh: Shh, account: Account, options: Options): Promise<string>;
export { post };
