import { Signer, JWA_ALG } from '../types';
export declare const createSigner: (signer: Signer, type: JWA_ALG, options?: any) => {
    sign: ({ data }: {
        data: Uint8Array | any;
    }) => Promise<string>;
};
