import type { StackConfig } from '../interface'; type StackParams = Exclude; type UseStack = (config?: StackConfig) => [boolean, StackParams]; declare const useStack: UseStack; export default useStack;