import * as t from 'io-ts'; import { Repository } from '../datastore/repository'; import { DatastoreProvider } from '../datastore/datastore.provider'; declare const storedCredential: t.InterfaceType<{ id: t.StringType; value: t.StringType; }, t.TypeOfProps<{ id: t.StringType; value: t.StringType; }>, t.OutputOfProps<{ id: t.StringType; value: t.StringType; }>, t.mixed>; export declare type StoredCredential = t.TypeOf; export declare class StoredCredentialsRepository extends Repository { constructor(datastore: DatastoreProvider); } export {};