import { GroupProps } from '@mantine/core';
import { FunctionComponent, PropsWithChildren } from 'react';
interface CollectionItemProps extends CollectionItemSharedProps {
    draggable?: boolean;
    disabled: boolean;
}
interface CollectionItemSharedProps extends GroupProps {
    id: string;
    onRemove?: React.MouseEventHandler<HTMLButtonElement>;
    removable?: boolean;
}
export declare const CollectionItem: FunctionComponent<PropsWithChildren<CollectionItemProps>>;
export {};
//# sourceMappingURL=CollectionItem.d.ts.map