/*! Copyright 2023-2024 the gnablib contributors MPL-1.1 */
export declare class Pkcs7 {
    static padSize(inputSize: number, len: number): number;
    static pad(input: Uint8Array, len: number, pos?: number): Uint8Array;
    static unpad(input: Uint8Array, pos?: number): Uint8Array;
}
export declare const Pkcs5: typeof Pkcs7;
