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

export interface KTCollapseConfigInterface {
	hiddenClass: string;
	activeClass: string;
	target: string;
}

export interface KTCollapseInterface {
	collapse(): void;
	expand(): void;
	isOpen(): boolean;
}
