import React from "react"; import type { SvgProps } from "react-native-svg"; export declare const HealthIconsContext: React.Context>; export interface HealthIconsProviderProps { iconProps?: Partial>; children: React.ReactNode; } export declare function HealthIconsProvider({ iconProps, children }: HealthIconsProviderProps): React.JSX.Element;