/**
 * KTUI - Free & Open-Source Tailwind UI Components by Keenthemes
 * Copyright 2025 by Keenthemes Inc
 */

export interface KTStickyConfigInterface {
	target: string;
	name: string;
	class: string;
	zindex: string;
	top: string;
	middle: boolean;
	bottom: string;
	start: string;
	center: boolean;
	end: string;
	width: string | number | object;
	offset: number;
	reverse: boolean;
	release: string;
	activate: string;
	releaseDelay: number;
	activeClass: string;
	releaseClass: string;
}

export interface KTStickyInterface {
	update(): void;
}
