import * as React from 'react'; import { RadialGradientProps } from './RadialGradientProps'; import { LayoutRectangle, View } from 'react-native'; type State = { layout: LayoutRectangle; }; declare class RadialGradientComponent extends React.Component { backgroundImageRef: View; state: State; private static getFarthestSideDistanceFromPoint; private static getClosestSideDistanceFromPoint; private static getFarthestCornerDistanceFromPoint; private static getClosestCornerDistanceFromPoint; render(): import("react/jsx-runtime").JSX.Element; componentDidUpdate(_prevProps: RadialGradientProps, prevState: State): void; private getRadius; private onLayout; } export default RadialGradientComponent;