import type { ComputedRef } from "vue";
import type { EncryptStatus } from "@theme-hope/composables/encrypt/typings";
export interface PathEncrypt {
    status: ComputedRef<EncryptStatus>;
    getStatus: (path: string) => EncryptStatus;
    validate: (token: string, keep?: boolean) => void;
}
export declare const usePathEncrypt: () => PathEncrypt;
