import type { IconNameType } from '../../assets'; import type { ImageProps } from './types'; export type LoadingIconResolutionType = '' | '2x' | '3x'; export type LoadingIconProps = Omit & { name?: IconNameType | number; resolution?: LoadingIconResolutionType; isStop?: boolean; useNativeDriver?: boolean; }; export declare function LoadingIcon(props: LoadingIconProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=LoadingIcon.d.ts.map