import * as React from 'react'; import { CarouselProps } from 'nuka-carousel'; declare type Props = { apps: { profileImageUrl: string; name: string; desc: string; permissionSet: boolean; }[]; options: CarouselProps; }; export declare const AppsSlider: React.FC; export {};