import type { ThemeVarType } from '../theme';
export declare const createStyles: (themeVar: ThemeVarType) => {
    title: {
        paddingHorizontal: number;
        paddingTop: number;
        paddingBottom: number;
        flexDirection: "row";
        justifyContent: "space-between";
        alignItems: "center";
    };
    text: {
        color: string;
        fontSize: number;
        lineHeight: number;
    };
    body: {
        borderStyle: "solid";
        borderColor: string;
        borderTopWidth: number;
        borderBottomWidth: number;
    };
};
