import React, { FunctionComponent } from 'react'; export declare enum ActionButtonIcons { TRASHCAN = "TRASHCAN", FRAME = "FRAME", VECTOR_MODE = "VECTOR_MODE", EXPORT = "EXPORT", IMPORT = "IMPORT" } export interface Props { icon: ActionButtonIcons; onClick: () => void; inactive?: boolean; disabled?: boolean; activeIconColor?: string; className?: string; children: React.ReactNode; } export declare const ActionButton: FunctionComponent;