import type { ThemeVarType } from '../theme';
export declare const createStyles: (themeVar: ThemeVarType) => {
    collapse: {
        backgroundColor: string;
        overflow: "hidden";
        minHeight: number;
    };
    title: {
        backgroundColor: string;
        flexDirection: "row";
        justifyContent: "space-between";
        paddingHorizontal: number;
        paddingVertical: number;
        minHeight: number;
        borderBottomWidth: number;
        borderBottomColor: string;
    };
    title_text: {
        lineHeight: number;
        fontSize: number;
        fontWeight: "bold";
        color: string;
    };
    body: {
        backgroundColor: string;
        borderBottomWidth: number;
        borderBottomColor: string;
    };
    body_padding: {
        paddingHorizontal: number;
    };
};
