import * as React from 'react';
export interface ActionCardProps {
    /** Icon to display rendered on the left of the card  */
    icon?: React.ReactNode;
    /** ActionCard content */
    children: React.ReactNode;
    /** ActionCard actions, rendered on the right off the card */
    actions?: React.ReactNode;
    /** Additional CSS classes added to the ActionCard root element */
    className?: string;
    /** Additional CSS styles added to the ActionCard root element */
    style?: React.CSSProperties;
}
export declare const ActionCard: React.ForwardRefExoticComponent<ActionCardProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=ActionCard.d.ts.map