import { Variants } from 'framer-motion'; import { Direction } from 'types'; export declare function handleCollapseDirection({ direction }: { direction?: Direction; }, close?: boolean): { width: string | number; height?: undefined; } | { height: string | number; width?: undefined; }; export declare const variants: Variants;