import React from 'react';
import { SpecItemTypes } from './shared';
import './spec-item.scss';
declare type SpecItemProps = {
    index: number;
    id: string;
    type: keyof typeof SpecItemTypes;
    children: React.ReactNode;
    moveItem: (from: number, to: number) => void;
    deleteItem: (index: number) => void;
    handleNewId: (newTitle: string) => void;
    isInitiallyOpen?: boolean;
};
export declare const KsSpecItem: React.FC<SpecItemProps>;
export {};
//# sourceMappingURL=spec-item.d.ts.map