import * as React from 'react'; export interface ActionListItemProps extends React.HTMLProps { /** Children of the action list item */ children?: React.ReactNode; /** Additional classes added to the action list item */ className?: string; } export declare const ActionListItem: React.FunctionComponent; //# sourceMappingURL=ActionListItem.d.ts.map