import { type ObjectManager } from "../../ObjectManager"; import { StandardSecurityHandlerRev4 } from "./StandardSecurityHandlerRev4"; /** * Represents Standard Security Handler Revision 5. * This handler always use AES encryption with key length of 256 bit, * it is described in Adobe Supplement to the ISO 32000. **/ export declare class StandardSecurityHandlerRev5 extends StandardSecurityHandlerRev4 { protected constructor(om: ObjectManager, id: number); static innerCreate(om: ObjectManager, id: number): StandardSecurityHandlerRev5; /** * Creates a new {@link StandardSecurityHandlerRev5}. * * @param om - {@link ObjectManager} that controls the lifetime of the {@link StandardSecurityHandlerRev5}. */ static create(om?: ObjectManager): StandardSecurityHandlerRev5; }