export type SwitchProps = { /** The uniform key this switch drives (0 = off, 1 = on). */ readonly uniform: string; /** Display name; defaults to the uniform key. */ readonly label?: string; }; export declare function Switch({ uniform, label }: SwitchProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=switch.d.ts.map