import { Field } from 'payload';

type EncryptedFieldOptions = Field & {
    type: 'text' | 'number' | 'select' | 'checkbox' | 'email' | 'date' | 'json' | 'textarea' | 'code' | 'radio';
};
declare const encryptedField: (data: EncryptedFieldOptions) => Field;

export { encryptedField };
