export declare function usePersistUI(key: string, opts?: Partial<{
    debounce: number;
    encrypt: boolean;
    encryptionSecret: string;
    ignoreTypes: string[];
    onRestore: (data: Record<string, any>) => void;
    clearOnSubmit: boolean;
    submitSelector: string;
    resetOnUnmount?: boolean;
}>): import("vue").Ref<null, null>;
