import { ViewStyle, TextStyle } from 'react-native';
export interface IAccordionStyle {
    container: ViewStyle;
    header: ViewStyle;
    arrow: ViewStyle;
    headerWrap: ViewStyle;
    headerText: TextStyle;
    content: ViewStyle;
    contentText: TextStyle;
}
declare const _default: {
    container: {
        borderTopWidth: number;
        borderTopColor: string;
    };
    header: {
        flexDirection: string;
        alignItems: string;
        paddingLeft: number;
        paddingRight: number;
        borderBottomWidth: number;
        borderBottomColor: string;
    };
    arrow: {
        width: number;
        height: number;
    };
    headerWrap: {
        flex: number;
        height: number;
        alignItems: string;
        flexDirection: string;
    };
    headerText: {
        color: string;
        fontSize: number;
    };
    content: {
        paddingVertical: number;
        paddingHorizontal: number;
        borderBottomWidth: number;
        borderBottomColor: string;
    };
    contentText: {
        fontSize: number;
        color: string;
    };
};
export default _default;
