/** * Removes null characters from a string. * @category Utils */ export declare const removeNullCharacters: (value: string) => string; /** * Pads a string with null characters at the end. * @category Utils */ export declare const padNullCharacters: (value: string, chars: number) => string;