import { ComputedRef, MaybeRef, ToRefs } from 'vue'; import { StackConfig } from '../interface'; type StackParams = Exclude; type UseStack = (config?: MaybeRef) => [ComputedRef, ToRefs]; /** * Resolves the stack setting into an enabled flag and normalized stack params. * Mirrors rc-notification@2.0 useStack. The `gap` config is no longer surfaced * here — gap is now read from the list-content CSS `gap`/`row-gap`. */ declare const useStack: UseStack; export default useStack;