9 lines
260 B
TypeScript
9 lines
260 B
TypeScript
import React from 'react';
|
|
import type { AppItemProps, AppListProps } from './types';
|
|
export declare const DefaultContent: React.FC<{
|
|
appList?: AppListProps;
|
|
itemClick?: (item: AppItemProps) => void;
|
|
baseClassName: string;
|
|
hashId?: string;
|
|
}>;
|