/** * Class to hold different phone svg styles */ export declare class Svg { /** * Get phone svg style 1 with circle button * @param imageId - id of svg image */ static getCircleType(imageId: string): string; /** * Get phone svg style 1 with rounded rectangle button * @param imageId - id of svg image */ static getRectangleType(imageId: string): string; /** * Get phone svg style 1 without button, screen only * @param imageId - id of svg image */ static getNoneType(imageId: string): string; }