import * as React from 'react'; import { IconSource } from './Icon'; declare type Props = { /** * Icon to display for the `CrossFadeIcon`. */ source: IconSource; /** * Color of the icon. */ color: string; /** * Size of the icon. */ size: number; /** * @optional */ theme: ReactNativePaper.Theme; }; declare const _default: (React.ComponentClass & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }, any> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<(React.ComponentClass & (({ color, size, source, theme }: Props) => JSX.Element)) | (React.FunctionComponent & (({ color, size, source, theme }: Props) => JSX.Element)), {}>) | (React.FunctionComponent & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<(React.ComponentClass & (({ color, size, source, theme }: Props) => JSX.Element)) | (React.FunctionComponent & (({ color, size, source, theme }: Props) => JSX.Element)), {}>); export default _default;