import { Node, Path } from "slate";
/**
 * For keys I am using the index of array. But I dont think it will lead to any problems in
 * this case
 */
export declare type PropertiesProps = {
    properties: Partial<Node>;
    path: Path;
    left?: boolean;
    right?: boolean;
};
export declare const Properties: ({ properties, path, left, right, }: PropertiesProps) => JSX.Element;
//# sourceMappingURL=properties.d.ts.map