/** * Modify from https://github.com/ionic-team/stencil-ds-output-targets/blob/main/packages/react-output-target/react-component-lib/utils/index.ts * MIT License https://github.com/ionic-team/stencil-ds-output-targets/blob/main/LICENSE */ import React from 'react'; import type { StyleReactProps } from '../interfaces'; export type StencilReactExternalProps = PropType & Omit, 'style'> & StyleReactProps; export type StencilReactForwardedRef = ((instance: T | null) => void) | React.MutableRefObject | null; export declare const setRef: (ref: StencilReactForwardedRef | React.Ref | undefined, value: any) => void; export declare const mergeRefs: (...refs: (StencilReactForwardedRef | React.Ref | undefined)[]) => React.RefCallback; export declare const createForwardRef: (ReactComponent: any, displayName: string) => React.ForwardRefExoticComponent> & React.RefAttributes>; export declare const defineCustomElement: (tagName: string, customElement: any) => void; export * from './attachProps'; export * from './case';