import { getSpki } from './utils';
export interface SigningKey {
    publicKey: ReturnType<typeof getSpki>;
    rsaPublicKey: ReturnType<typeof getSpki>;
    getPublicKey: ReturnType<() => typeof getSpki>;
    kid: string;
    alg: string;
}
