/** We can use this signing function instead of the one from elliptic. It is about 3/4 times faster in node environments */ export declare function sign(sk: string, msg: string): Promise<{ r: string; s: string; }>; export declare function toDER(sig: { r: string; s: string; }, enc: string): number[];