UNPKG

alouette

Version:

A modern, customizable design system built on top of NativeWind v5 with configurable defaults

10 lines 409 B
export interface UseControllableValueParams { value: string | undefined; defaultValue: string | undefined; onValueChange?: (value: string) => void; } export declare function useControllableValue({ value: controlledValue, defaultValue, onValueChange, }: UseControllableValueParams): readonly [ string | undefined, (next: string) => void ]; //# sourceMappingURL=useControllableValue.d.ts.map