import { default as React } from 'react'; import { ComponentProps } from '@ombre-ui/core/synthesis5'; /** * Tells us the shape of the props we accept: * - partial overrides from the shader definition * - optional children * - optional ref for advanced usage in React 19 */ type OmbreComponentProps = Partial & { children?: React.ReactNode; ref?: React.Ref; }; /** * The main React wrapper component * This component is compatible with both React 18 and 19 */ export declare const OmbreComponent: React.FC; export default OmbreComponent; //# sourceMappingURL=OmbreSynthesis5.d.ts.map