/// <reference types="react" />
interface Props {
    albumName: string;
    albumCount: number;
    albumCover: string;
    onItemPress(): void;
}
export declare const MediaLibraryAlbumItem: (props: Props) => JSX.Element;
export declare const albumItemStyle: {
    container: {
        flex: number;
        height: number;
        backgroundColor: string;
        flexDirection: "row";
        alignItems: "center";
    };
    cover: {
        marginLeft: number;
        width: number;
        height: number;
    };
    textContainer: {
        flexDirection: "column";
        marginLeft: number;
    };
    name: {
        fontSize: number;
        fontWeight: "600";
        color: string;
    };
    count: {
        fontSize: number;
        fontWeight: "400";
        color: string;
        marginTop: number;
    };
};
export {};
