import React from 'react'; import { Badge as BadgeType, Size, IconField } from '../types'; export interface ActionType { icon?: IconField; link?: { [key: string]: any; }; url?: JSX.IntrinsicElements['a']; content?: any; disabled?: boolean; badge?: BadgeType; } interface ActionsProps { actions: ActionType[]; size: Size; inverse?: boolean; fullWidth?: boolean; Link?: any; className?: string; style?: React.CSSProperties; nextJs?: boolean; } declare const Actions: React.FC; export { Actions }; //# sourceMappingURL=index.d.ts.map