import { ImageStyle, TextStyle, ViewStyle } from 'react-native';
import type { Theme } from '../../../types';
export declare const makeStyle: (theme?: Theme) => {
    container: ViewStyle;
    dropdownContainer: {
        position: "absolute";
        backgroundColor: string;
        marginTop: number;
        alignItems: "center";
        shadowColor: string;
        shadowOffset: {
            width: number;
            height: number;
        };
        shadowOpacity: number;
        shadowRadius: number;
        elevation: number;
        width: string;
        paddingBottom: number;
    };
    labelText: TextStyle;
    dropdownButtonStyle: ViewStyle;
    dropdownIconStyle: ImageStyle;
    dividerStyle: ViewStyle;
    languageButton: ViewStyle;
    languageButtonSelected: ViewStyle;
    languageButtonContainer: ViewStyle;
    languageTextStyle: TextStyle;
    languageTextSelected: TextStyle;
};
