import React from 'react'; export interface ActionListProps { list: any[]; align?: string; other: any; [k: string]: any; } declare const ActionList: (props: ActionListProps) => React.JSX.Element; export default ActionList;