import type { LC, LiveElement } from '@use-gpu/live'; import type { ShaderSource } from '@use-gpu/shader'; export type FresnelMaterialEffectProps = { opacity?: number; render?: (material: Record>) => LiveElement; children?: LiveElement | ((material: Record>) => LiveElement); }; export declare const FresnelMaterialEffect: LC;