import React, { ReactNode } from 'react';
import { ViewStyle, TextStyle } from 'react-native';
export interface ActionBarActionsProps {
    label?: string;
    onPress?: () => void;
    fontStyle?: TextStyle;
    render?: ReactNode;
}
export declare type ActionBarProps = {
    height?: number;
    backgroundColor?: string;
    actions?: ActionBarActionsProps[];
    keepAbsoulte?: boolean;
    style?: ViewStyle;
    scroll?: boolean;
    useSafeArea?: boolean;
    focusIndex?: number;
};
declare function ActionBar(props: ActionBarProps): React.JSX.Element;
export default ActionBar;
