import { ReactNode } from 'react';
import { ICardActionsProps } from '../Card.container';
export type ICardActionsConfig = ICardActionsProps & {
    padding?: number;
    skip?: boolean;
    classPrefix: string;
    extraActions?: ReactNode;
};
export declare const useCardActions: (config: ICardActionsConfig) => {
    renderActions: import("react/jsx-runtime").JSX.Element | null;
};
