import { LinklistFilterKeys } from "../../../shared/graphql/graphql"; type Props = { skip?: boolean; first?: number; query?: string | null; filterKeys?: LinklistFilterKeys; }; export declare const useLinklist: (props?: Props) => { linklists: { __typename: "Linklist"; _id?: string | null; title?: string | null; links?: Array<{ __typename: "LinklistLayer1"; url?: string | null; _id?: string | null; } | null> | null; }[] | undefined; pageInfo: { __typename: "PageInfo"; endCursor?: string | null; hasNextPage?: boolean | null; hasPreviousPage?: boolean | null; startCursor?: string | null; } | null | undefined; isLoadingLinklist: boolean; error: import("@apollo/client").ErrorLike | undefined; fetchMoreLinklists: () => void; }; export {};