import { IAppBarActionProps, IAppBarActionsProps } from "../types"; import { IReactNullableElement } from "../../../types"; export declare function renderActions({ context, actionMutator, testID, renderAction, renderExpandableAction, actions: items, viewportWidth, maxVisibleActions, ...props }: IAppBarActionsProps & { actionMutator?: (renderer: IAppBarActionsProps["renderAction"], _props: IAppBarActionProps, index: number, isExpandable: boolean) => IReactNullableElement; }): IReactNullableElement[];