///
import { DragDropData, OptimisticLocalState, State } from '../dtos';
export interface UseOptimisticRendering {
dataFromServer: DragDropData;
setState: React.Dispatch>;
}
export declare const useOptimisticRendering: (props: UseOptimisticRendering) => {
optimisticState: OptimisticLocalState;
setOptimisticState: import("react").Dispatch>;
};