import * as React from 'react';
export interface BlockCardProps {
    /** The child elements to be rendered within the BlockCard (required) */
    children: React.ReactNode;
    /** The title of the BlockCard (optional) */
    title?: React.ReactNode;
    /** The description of the BlockCard (optional) */
    description?: React.ReactNode;
    /** The action elements to be rendered at top right of the BlockCard (optional) */
    actions?: React.ReactNode;
    /** CSS class name(s) to be applied to the BlockCard root element (optional) */
    className?: string;
    /** The inline style object to be applied to the card element (optional) */
    style?: React.CSSProperties;
}
export declare const BlockCard: React.ForwardRefExoticComponent<BlockCardProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=BlockCard.d.ts.map