export function mapStateToProps(state: any, ownProps?: {}): {
    items: any;
};
export function mergeProps(stateProps: any, dispatchProps: any, ownProps: any): any;
export function ContainerActionDropdown({ items, ...props }: {
    [x: string]: any;
    items: any;
}): import("react/jsx-runtime").JSX.Element;
export namespace ContainerActionDropdown {
    let displayName: string;
    namespace propTypes {
        let items: PropTypes.Requireable<{}>;
        let noCaret: PropTypes.Requireable<boolean>;
        let pullRight: PropTypes.Requireable<boolean>;
        let hideLabel: PropTypes.Requireable<boolean>;
    }
}
declare const _default: any;
export default _default;
import PropTypes from 'prop-types';
