import { CSSProperties, HTMLAttributes } from 'react';
export interface Props extends HTMLAttributes {
active?: {
fill: string;
background: string;
};
cursor?: CSSProperties['cursor'];
}
export declare function Action({ active, className, cursor, style, ...props }: Props): JSX.Element;