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