import React, { ReactNode } from 'react'; import { StyleProp, ViewStyle, TextStyle } from 'react-native'; import { AttachmentAction } from './components/AttachmentSheet'; export interface ActionsProps { /** Actions shown in the attachment sheet. Add `icon`/`color` for a grid layout. */ actions?: AttachmentAction[]; /** Tint color for the action labels in the sheet (defaults to the theme accent). */ actionSheetOptionTintColor?: string; icon?: () => ReactNode; wrapperStyle?: StyleProp; iconTextStyle?: StyleProp; buttonStyle?: StyleProp; onPressActionButton?(): void; } export declare function Actions({ actions, actionSheetOptionTintColor, icon, wrapperStyle, onPressActionButton, buttonStyle, }: ActionsProps): React.JSX.Element; //# sourceMappingURL=Actions.d.ts.map