import React from 'react';
interface Props {
    disabled: boolean;
    size: string;
}
declare const SelectMultipleValue: React.FC<React.PropsWithChildren<Props>>;
export default SelectMultipleValue;
