import { ColorValue, ImageSourcePropType } from 'react-native'; export type ActionType = 'appIcon' | 'back' | 'pan' | 'custom'; export interface Action { id?: string; title?: string; image?: ImageSourcePropType; backgroundColor?: ColorValue; visibility?: 'default' | 'persistent' | 'primary'; enabled?: boolean; type?: T; } export type HeaderAction = Action<'appIcon' | 'back'>; export type CallbackAction = Omit & { onPress: () => void; }; export type AndroidAction = CallbackAction | Action<'appIcon' | 'back' | 'pan'>; export declare function getCallbackActionId(): string; //# sourceMappingURL=Action.d.ts.map