import { Person } from "@void-zero/types"; export interface UserConfig { readonly firstName: string; readonly lastName: string; readonly email: string; } export declare class User implements Person { readonly firstName: string; readonly lastName: string; readonly email: string; readonly fullName: string; constructor(config: UserConfig); }