import { Control, type IControlOptions } from "./Control"; export interface IParallaxOptions extends IControlOptions { photo?: string; content?: string; speed?: { coverPhoto?: number; content?: number; }; scrollElement?: string; } export declare class Parallax extends Control { content: HTMLElement; coverPhoto: HTMLElement; constructor(element: string | HTMLElement, options: IParallaxOptions); private bind; animate: (_e: Event) => void; static onInitialize(): void; }