@appbuckets/react-ui-forms
Version:
An utilities package to manage and create Form using AppBuckets ReactUI
14 lines (13 loc) • 507 B
TypeScript
import { ColorPickerProps } from '@appbuckets/react-ui/ColorPicker';
import type { HookedFieldProps } from '../utils/createHookedField.types';
declare type HookedColorPickerValueType = string | null;
export declare type HookedColorPickerProps = HookedFieldProps<
ColorPickerProps,
HookedColorPickerValueType
>;
declare const HookedColorPicker: import('../utils/createHookedField.types').HookedFieldComponent<
ColorPickerProps,
null,
HookedColorPickerValueType
>;
export default HookedColorPicker;