import { StyleProp, ViewStyle, ColorValue } from 'react-native';
import { ImageProps } from '../Image';
import { IconProps } from '../Icon';
import { InlinePressableProps, RneFunctionComponent } from '../helpers';
export type AccessoryProps = Partial<IconProps> & Partial<ImageProps> & InlinePressableProps & {
    underlayColor?: ColorValue;
    style?: StyleProp<ViewStyle>;
};
export declare const Accessory: RneFunctionComponent<AccessoryProps>;
