export declare const useInfrastructures: () => { infrastructures: import("../..").Infrastructure[]; isLoading: boolean; isError: any; }; export declare const useInfrastructure: (infrastructureId: number) => { infrastructure: import("../..").Infrastructure; isLoading: boolean; isError: any; updateInfrastructure: import("swr/mutation").TriggerWithOptionsArgs>; isMutating: boolean; updateError: any; updatedData: import("../..").Infrastructure; }; export declare const useCreateInfrastructure: () => { createInfrastructure: import("swr/mutation").TriggerWithOptionsArgs>; isMutating: boolean; createError: any; createdData: import("../..").Infrastructure; }; export declare const useDeleteInfrastructure: (infrastructureId?: number) => { deleteInfrastructure: (id: number) => Promise; isMutating: boolean; deleteError: any; deletedData: import("../..").Infrastructure; }; //# sourceMappingURL=infrastructures.d.ts.map