@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 366 B
TypeScript
import type { ReactNode } from 'react';
import PreviewGroup from './PreviewGroup';
import type { ImageProps } from './type';
export interface IImage {
(props: ImageProps): ReactNode;
PreviewGroup: typeof PreviewGroup;
}
declare const Image: IImage;
export default Image;
export { default as PreviewGroup } from './PreviewGroup';
export type * from './type';