import { Exportable } from './exportable'; export declare type ParseType = 'full' | 'none'; export declare class Users implements Exportable { name?: string; profile?: string; user?: string; value?: string; export: Exportable['export']; readonly setName: (value: string) => void; readonly setProfile: (value: string) => void; readonly setUser: (value: string) => void; readonly setValue: (value: string) => void; }