geostyler
Version:
Framework for styling geodata
15 lines (14 loc) • 535 B
TypeScript
import { default as React } from 'react';
import { NumberExpressionInputProps } from '../../../ExpressionInput/NumberExpressionInput/NumberExpressionInput';
import { Expression } from 'geostyler-style';
type InputProps = NumberExpressionInputProps['inputProps'];
export interface BrightnessFieldProps extends InputProps {
value?: number;
onChange?: (newValue: Expression<number> | undefined) => void;
}
/**
* Brightness Field
* @deprecated
*/
export declare const BrightnessField: React.FC<BrightnessFieldProps>;
export {};