import { SvelteComponentTyped } from "svelte";
import { Cell } from '../controller';
import * as I from '../types';
declare const __propDef: {
    props: {
        [x: string]: any;
        head: I.Head;
        threshold?: number | undefined;
        sliceThreshold?: number | undefined;
        value?: Cell | null | undefined;
    };
    events: {
        mousedown: MouseEvent;
        mouseup: MouseEvent;
        drag: DragEvent;
        mouseenter: MouseEvent;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type CellProps = typeof __propDef.props;
export type CellEvents = typeof __propDef.events;
export type CellSlots = typeof __propDef.slots;
export default class Cell extends SvelteComponentTyped<CellProps, CellEvents, CellSlots> {
}
export {};
