//#region src/presets/height-auto.d.ts /** * Height expand/collapse for accordion/collapsible. Use with `animate` * (not `AnimatePresence`) — element stays mounted and toggles visually. */ declare const heightAuto: { open: { height: "auto"; opacity: number; filter: string; }; closed: { height: number; opacity: number; filter: string; }; }; //#endregion export { heightAuto };