import { Key, KeyAccess } from '../models/key.model';
export declare class KeyFactory {
    static instance(config: {
        userId: string;
        name: string;
        desc: string;
        blocked: boolean;
        access: KeyAccess;
    }): Key;
}
