import type { StyleProp, ViewStyle } from 'react-native'; export type ColorPickerProps = { /** The uniform key this picker drives (an RGB triple). */ readonly uniform: string; /** Display name; defaults to the uniform key. */ readonly label?: string; /** NativeWind class for the container; resolved via the `./nativewind` interop. */ readonly className?: string; readonly style?: StyleProp; }; export declare function ColorPicker({ uniform, label, style }: ColorPickerProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=color-picker.d.ts.map