import * as React from "react"; export type QuickActionIconProps = { /** Ícone já resolvido (opcional se usar iconNode) */ iconNode: React.ReactElement<{ fontSize?: "inherit" | "large" | "medium" | "small"; }>; label: string; disabled?: boolean; }; export declare const QuickActionIcon: React.FC;