import { ISetOptions, IResult } from './actions/set/type'; export default class Credential { constructor({ logger }?: { logger?: any; }); get(access?: string): Promise; set(options?: ISetOptions): Promise; getAll: () => { [x: string]: Record; }; remove: (access?: string | undefined) => Promise; rename: (options?: import("./actions/rename").IRenameOptions | undefined) => Promise; decrypt: (info: Record) => Record; default: (access?: string | undefined) => Promise; }