export type Indexed<T> = T & {
    index: number;
};
export declare const isIndexed: <T>(u: unknown) => u is Indexed<T>;
