/** * Horizontal slides component. Can be used to display a list of items horizontally. Has optional title and next/prev buttons. * @csspart slides-base The container for the slides component * @csspart slides-heading The heading of the slides * @csspart slides-previous-button The previous button * @csspart slides-next-button The next button */ export declare class KlevuSlides { #private; /** * Heading for the slides component */ heading?: string; /** * When clicking next/prev buttons should scroll full width of container */ slideFullWidth?: boolean; /** * Hides next and previous buttons */ hideNextPrev?: boolean; /** * center position next and previous buttons */ centerNextPrev?: boolean; connectedCallback(): void; componentDidLoad(): void; render(): any; }