import { StyleProp, ViewStyle } from "react-native";
export interface IABBContainer {
    /**
     * @type StyleProp<ViewStyle>
     * @description Props for Native Style API
     */
    style?: StyleProp<ViewStyle>;
}
export interface IABBContainerStateToProps {
}
export interface IABBContainerConnectedReduxStateProps extends IABBContainer, IABBContainerStateToProps {
}
export interface IABBContainerProps extends IABBContainer {
}
