import type { ReactNode } from 'react'; import type { UniformControl } from '../../../catalog/shaders'; /** Render one control descriptor as its kind's self-wiring primitive. */ export declare function dispatchControl(c: UniformControl): ReactNode; export type ControlProps = { /** The uniform id to place; its descriptor is resolved from the ControlForm. */ readonly uniform: string; }; export declare function Control({ uniform }: ControlProps): ReactNode; //# sourceMappingURL=control.d.ts.map