import { Ref } from '@vue/composition-api'; export declare function useDocumentHistory(id: Ref, collection: string): { result: Ref; loading: Ref; networkStatus: Ref; error: Ref; start: () => void; stop: () => void; restart: () => void; document: Ref; variables: Ref<{ id: string; collection: string; }>; options: import("@vue/apollo-composable").UseQueryOptions | Ref>; query: Ref>; refetch: (variables?: { id: string; collection: string; }) => Promise>; fetchMore: (options: import("apollo-client").FetchMoreQueryOptions<{ id: string; collection: string; }, K> & import("apollo-client").FetchMoreOptions) => Promise>; subscribeToMore: (options: import("apollo-client").SubscribeToMoreOptions | Ref> | import("@vue/apollo-composable/dist/util/ReactiveFunction").ReactiveFunction>) => void; onResult: (fn: (param?: import("apollo-client").ApolloQueryResult) => void) => { off: () => void; }; onError: (fn: (param?: Error) => void) => { off: () => void; }; history: Readonly>>; reverseHistory: import("@vue/composition-api").ComputedRef; };