declare function injectStyle({ css, id, type, ref, }: { css: string; id?: string; type?: 'core' | 'base'; ref?: any; }): void; /** * @deprecated Use the `disableStyleInjection` tooltip prop instead. * See https://react-tooltip.com/docs/examples/styling#disabling-reacttooltip-css */ declare function removeStyle({ type, id, }?: { type?: 'core' | 'base'; id?: string; }): void; export { injectStyle, removeStyle };