import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from "@it-corp/vpbank-core";
export type SpotlightActionsListStylesNames = "actionsList" | "actionsListInner";
export interface SpotlightActionsListProps extends BoxProps, CompoundStylesApiProps<SpotlightActionsListFactory>, ElementProps<"div"> {
}
export type SpotlightActionsListFactory = Factory<{
    props: SpotlightActionsListProps;
    ref: HTMLDivElement;
    stylesNames: SpotlightActionsListStylesNames;
    compound: true;
}>;
export declare const SpotlightActionsList: import("@it-corp/vpbank-core").MantineComponent<{
    props: SpotlightActionsListProps;
    ref: HTMLDivElement;
    stylesNames: SpotlightActionsListStylesNames;
    compound: true;
}>;
