import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '../../../core';
export type EmptyStateActionsStylesNames = 'actions';
export interface EmptyStateActionsProps extends BoxProps, CompoundStylesApiProps<EmptyStateActionsFactory>, ElementProps<'div'> {
    /** Action buttons or controls */
    children?: React.ReactNode;
}
export type EmptyStateActionsFactory = Factory<{
    props: EmptyStateActionsProps;
    ref: HTMLDivElement;
    stylesNames: EmptyStateActionsStylesNames;
    compound: true;
}>;
export declare const EmptyStateActions: import("../../..").MantineComponent<{
    props: EmptyStateActionsProps;
    ref: HTMLDivElement;
    stylesNames: EmptyStateActionsStylesNames;
    compound: true;
}>;
