export interface UseControllableValuesParams {
    values: readonly string[] | undefined;
    defaultValues: readonly string[] | undefined;
    onValuesChange?: (values: string[]) => void;
}
export declare function useControllableValues({ values: controlledValues, defaultValues, onValuesChange, }: UseControllableValuesParams): readonly [
    readonly string[],
    (value: string) => void
];
//# sourceMappingURL=useControllableValues.d.ts.map