export type Status = 'OK' | 'CANCELED';
/** Compress format */
export type CompressFormat = 
/** JPEG image format */
'JPEG'
/** PNG image format */
 | 'PNG';
export interface ResultWrapper<T> {
    status: Status;
    data?: T;
}
//# sourceMappingURL=customTypes.d.ts.map