import { QueryClient } from '@tanstack/react-query'; type DeletePostsConfig = { queryClient: QueryClient; postId: string; circleId?: string; }; export declare const optimisticallyDeletePosts: ({ queryClient, postId, circleId, }: DeletePostsConfig) => void; export {};