export type GrowOptions = { /** How long the animation should take in ms @default 200 */ duration?: number; /** The amount to scale the element by @default 0.8 */ amount?: number; /** Whether to include a fade effect in the animation @default true */ hasFade?: boolean; }; declare const useGrow: (node: HTMLElement, { duration, amount, hasFade }?: GrowOptions) => { growIn: () => Promise; growOut: () => Promise; setGrowOut: () => void; setGrowIn: () => void; }; export { useGrow };