/**
 * CRC16CCITT implementation for generating CRC codes
 */
export declare class CRC16CCITT {
    /**
     * Generate CRC16-CCITT input from input string
     * @param input Input string to generate CRC from
     * @returns Uppercase hexadecimal representation of the CRC
     */
    static generateCode(input: string): string;
}
