import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@empoleon/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("@empoleon/core").EmpoleonComponent<{
    props: SpotlightActionsListProps;
    ref: HTMLDivElement;
    stylesNames: SpotlightActionsListStylesNames;
    compound: true;
}>;
