import * as React from "react";
import { StyleProp, ViewStyle, ImageStyle, ImageSourcePropType } from "react-native";
declare type CustomStyleProp = StyleProp<ViewStyle> | Array<StyleProp<ViewStyle>>;
declare type CustomImageStyleProp = StyleProp<ImageStyle> | Array<StyleProp<ImageStyle>>;
export interface ISidedComponentProps {
    style?: CustomStyleProp;
    TouchableComponent?: any;
    imageSource?: ImageSourcePropType;
    customComponent?: React.ReactElement;
    imageStyle?: CustomImageStyleProp;
    onPress?: () => void;
}
declare const SidedComponent: React.FC<ISidedComponentProps>;
export default SidedComponent;
