export interface Signature {
    r: string;
    s: string;
    v: string;
}
export declare const strictECDSA: (signature: Signature) => Signature;
