import React from 'react'; export interface IndexesContextValue { relation: (ele: HTMLElement, index: string | number) => void; } export declare const IndexesContext: React.Context; export declare function IndexesProvider({ value, children }: { value: any; children: any; }): React.JSX.Element;