export interface IArrayService {
    data?: any;
    key?: string;
    customKey?: string;
}
export declare const ArrayService: ({ data, key, customKey }: IArrayService) => any;
