import { Struct, Json } from '@thisisagile/easy'; export declare class Name extends Struct { readonly first: string; readonly middle: string; readonly last: string; toString(): string; } export declare const name: (n?: Json) => Name;