/** * Stateless functional component that renders an arbitrary number of children with a separator * of configurable width (props.separatorWidth) between each child. */ import type { FunctionComponent, ReactNode } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface ActionBarProps { style?: StyleProp; separatorWidth?: number; children: ReactNode[]; } export declare const ActionBar: FunctionComponent;