///
import { ProxyProps, ProxyComponent } from './types/internal';
import { fragmentChunks, vertexChunks, commonChunks } from './generated';
declare type ShaderProxyHelper = {
[key in T]: any;
} & {
Body: ProxyComponent;
Head: ProxyComponent;
};
export declare const vert: ShaderProxyHelper;
export declare const frag: ShaderProxyHelper;
export declare function common({ children }: ProxyProps): JSX.Element;
export {};