export declare type Template = {
    template: Record<string, unknown>;
    name: string;
    parseJSON: boolean;
    createdAt: string;
    updatedAt: string;
};
export declare type TemplateResponse<R> = {
    status: boolean;
    mapped: R;
};
