import type { ThemeVarType } from '../theme';
export declare const createStyles: (themeVar: ThemeVarType) => {
    body: {
        flex: number;
    };
    option_item: {
        paddingHorizontal: number;
        height: number;
        flexDirection: "row";
        alignItems: "center";
    };
    option_item_text: {
        flex: number;
        lineHeight: number;
        fontSize: number;
        color: string;
    };
    btn: {
        height: number;
        justifyContent: "center";
        paddingHorizontal: number;
    };
};
