import { OverlayPositionEnum } from "../../overlay/overlay.enum"; export declare class CommonService { /** * Set css class by status. * * @author Federico Gambardella * @param {string} status */ setCssClassByStatus(status: string | undefined, name: string): string; /** * Set overlay position. * * @author Federico Gambardella * @param {string} position * @returns */ setOverlayPosition(position: string): OverlayPositionEnum; /** * Check if element passed in input is in owerflow. * * @author Federico Gambardella * @param {HTMLElement} element * @returns {boolean} */ isElementOverflown(element: HTMLElement): boolean; /** * Generate guid. * * @author Federico Gambardella * @return {string} */ generateGUID(): string; }