import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { HeaderActionComponent, HeaderIcon as HeaderIconType } from '../__types__'; declare type ActionItemProps = { /** Array of up to three action items on the right of the header */ actionItems?: Array; /** Style overrides for internal elements. The styles you provide will be combined with the default styles. */ styles?: { root?: StyleProp; actionItem?: StyleProp; component?: StyleProp; }; }; /** * HeaderActionItems component * * The HeaderActionItems is a helper component for organizing the contents in the Header. It is * used for displaying all of the action item icons and components. */ export declare const HeaderActionItems: React.FC; export {};