import React from 'react';
import { MultiselectProps } from './interfaces';
interface InternalMultiselectProps extends MultiselectProps {
    __hideTokens?: boolean;
}
declare const InternalMultiselect: React.ForwardRefExoticComponent<InternalMultiselectProps & React.RefAttributes<MultiselectProps.Ref>>;
export default InternalMultiselect;
