export declare class CookieService {
    datatableColumnVersion: number;
    constructor();
    setCookie(cName: string, cValue: Array<any>): void;
    getCookie(itemLength: Number): {
        status: boolean;
        array: any;
    };
}
