/**
 * @export
 * @class StreamsPublicSigningKey
 */
export declare class StreamsPublicSigningKey {
    /**
     * The unique identifier of the key
     * @type {string}
     * @memberof StreamsPublicSigningKey
     */
    keyId?: string;
    /**
     * @type {Date}
     * @memberof StreamsPublicSigningKey
     */
    createdAt?: Date;
    constructor(obj?: Partial<StreamsPublicSigningKey>);
}
export default StreamsPublicSigningKey;
