import { NRequest } from '../../types';
import { IConfigParams } from '../standalone';
export interface GetListsProps {
    payload: NRequest.IListsPayload;
}
export declare const getLists: ({ config }: IConfigParams) => ({ payload, }: GetListsProps) => Promise<Error | import("../../types").NLists.IList>;
