8 lines
265 B
TypeScript
8 lines
265 B
TypeScript
import * as React from 'react';
|
|
import { ImageLoadState } from './Image.types';
|
|
import type { IImageProps } from './Image.types';
|
|
export interface IImageState {
|
|
loadState?: ImageLoadState;
|
|
}
|
|
export declare const ImageBase: React.FunctionComponent<IImageProps>;
|