import React from "react";
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from "@it-corp/vpbank-core";
export type SpotlightActionsGroupStylesNames = "actionsGroup";
export interface SpotlightActionsGroupProps extends BoxProps, CompoundStylesApiProps<SpotlightActionsGroupFactory>, ElementProps<"div"> {
    /** `Spotlight.Action` components */
    children?: React.ReactNode;
    /** Group label */
    label?: React.ReactNode;
}
export type SpotlightActionsGroupFactory = Factory<{
    props: SpotlightActionsGroupProps;
    ref: HTMLDivElement;
    stylesNames: SpotlightActionsGroupStylesNames;
    compound: true;
}>;
export declare const SpotlightActionsGroup: import("@it-corp/vpbank-core").MantineComponent<{
    props: SpotlightActionsGroupProps;
    ref: HTMLDivElement;
    stylesNames: SpotlightActionsGroupStylesNames;
    compound: true;
}>;
