export declare type TData = 'string' | 'json'; export declare type TDataShowcase = 'string' | 'native'; export declare class TypeDataHandler { readonly typedata: TData; readonly typedataShowcase: TDataShowcase; constructor(typedata: string | undefined, typedataShowcase: string | undefined); ext(): string; savedata(data: string | any): string; loaddata(data: string): any | undefined; } //# sourceMappingURL=typedata.d.ts.map