export declare type EncryptDataProps = {
    password: string;
    text: string;
};
export declare type EncryptDataResult = {
    encryptedText: string;
    iv: string;
};
export declare type DecryptDataProps = {
    password: string;
    encryptedText?: string;
    iv?: string;
};
