import { OwlOptions } from 'ngx-owl-carousel-o'; import { ButtonI } from '../../../interfaces/atomic/button.interface'; import { BadgeI } from '../../../interfaces/atomic/badge.interface'; import { DomSanitizer, SafeStyle } from '@angular/platform-browser'; import * as i0 from "@angular/core"; export declare class LocationBeachComponent { private readonly sanitizer; title?: string; subtitle?: string; description?: string; infoItems?: LocationBeachInfoItem[]; items?: LocationBeachItem[]; links?: ButtonI[]; button?: ButtonI; sliderOptions: OwlOptions; collapsed: boolean; constructor(sanitizer: DomSanitizer); getImage(img: string): SafeStyle; toggleCollapse(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export interface LocationBeachItem { image?: string; tag?: BadgeI; } export interface LocationBeachInfoItem { title?: string; icon?: string; }