import type { ReactNode } from "react"; export declare const APP_LIST_GRID_CLASS = "w-full xl:grid xl:grid-cols-2 xl:gap-3 xl:overflow-visible xl:rounded-none xl:bg-transparent"; export declare const APP_LIST_GRID_ROW_CLASS = "xl:rounded-2xl xl:border xl:border-transparent xl:bg-card xl:transition-[background-color,border-color] xl:hover:border-border xl:focus-within:border-ring/50"; export declare function AppList({ children, className, }: { children: ReactNode; className?: string; }): import("node_modules/@types/react").JSX.Element; export declare function AppListRow({ children, className, }: { children: ReactNode; className?: string; }): import("node_modules/@types/react").JSX.Element; //# sourceMappingURL=app-list-row.d.ts.map