export interface Structure {
    createdAt: string;
    updatedAt: string;
}
export interface APIStructure extends Structure {
    id: string;
}
export interface BuilderResponse<T extends APIStructure> {
    statusCode: number;
    type: string;
    message?: string;
    error?: string;
    data: T[];
    other?: {
        type: string;
        data: T[];
    }[];
}
