/** This context can be used by components that compose ActionList inside a Menu */
import React from 'react';
declare type ContextProps = {
    container?: string;
    listRole?: string;
    itemRole?: string;
    afterSelect?: Function;
};
export declare const ActionListContainerContext: React.Context<ContextProps>;
export {};
