import type { StackConfig } from '@rc-component/notification/es/hooks/useStack'; export type StackConfigInput = boolean | StackConfig | undefined; declare const useStackConfig: (stackConfig: StackConfigInput, defaultStackConfig: StackConfigInput) => false | StackConfig; export default useStackConfig;