import { IIconProps } from '../../Icon';
export interface IListDragImageProps {
    /**
     * Optional icon props to show in the drag image
     */
    iconProps?: IIconProps;
    /**
     * Text to appear as part of the drag image
     */
    text: string;
}
