import { StateProps } from './withReduxDialog';
export default function useReduxDialog<ExtendStateProps = unknown>(name: string): {
    handleClose: () => void;
} & ExtendStateProps & StateProps;
