import { FileValue } from '../document/document-models'; import { User } from '../auth/auth-models'; export declare enum SignatureType { hand = "HAND", text = "TEXT" } export interface Signature { id?: string; image: FileValue; email: string; user?: User; type?: SignatureType; text?: string; font?: string; } export interface DataUpdateSignature { id: string; image?: FileValue; email?: string; user?: User; type?: string; text?: string; font?: string; } export declare type SignatureKeys = keyof Signature; export interface Signatures { items: Signature[]; }