import type { IUseDraftProps } from './types';
export default function useDraft(props: IUseDraftProps): {
    draft: any;
    update: (changes: any) => void;
    remove: () => void;
};
