import React from 'react';
declare function Column({ title, task, id }: {
    title: any;
    task: any;
    id: any;
}): React.JSX.Element;
export default Column;
