import './DragAndDropList.scss'; interface TaskProps { id: number; title: string; } export declare const Task: ({ id, title }: TaskProps) => import("react/jsx-runtime").JSX.Element; interface ColumnProps { id: string; tasks: { id: number; title: string; }[]; } export declare const Column: React.FC; interface InputProps { onSubmit: (input: string) => void; } export declare const Input: React.FC; declare const DragAndDropList: () => import("react/jsx-runtime").JSX.Element; export default DragAndDropList;