import { CSSProperties } from "react"; import { ReactElement } from "react"; export interface ActionButtonProps extends CSSProperties { icon: ReactElement; onClick: () => void; buttonColor?: string; } export interface BackgroundProps { [type: string]: string; } export declare const ActionButton: ({ icon, onClick, buttonColor, ...rest }: ActionButtonProps) => JSX.Element;