import { AppsGalleryType } from './enums';
import { AppsGalleryInterface, AppsGalleryItemProps } from './types';
export declare class AppsGalleryEntry implements AppsGalleryInterface {
    id: string;
    name: string;
    type: AppsGalleryType;
    icon: string;
    onClick: () => void;
    constructor({ id, name, icon, onClick, }: AppsGalleryItemProps);
    setItemId(id: string): void;
}
export default AppsGalleryEntry;
