/// <reference types="react" />
import { ActionListProps } from './ActionList';
declare const ExportActionList: import("react").NamedExoticComponent<import("./ActionList").DefinedActionListProps & Omit<import("react").HTMLAttributes<HTMLDivElement>, keyof import("./ActionList").DefinedActionListProps>> & {
    readonly type: ({ autoAdjustment: _autoAdjustment, ...rest }: ActionListProps) => JSX.Element;
} & {
    Sizes: ["sm", "md", "lg"];
    ButtonStyleTypes: ["primary", "border", "border-gray"];
};
export default ExportActionList;
export type { ActionListProps };
