import { ArticleFilterKeys } from "../../../shared/graphql/graphql"; type Props = { skip?: boolean; first?: number; query?: string | null; filterKeys?: ArticleFilterKeys; }; export declare const userArticles: (props?: Props) => { articles: { __typename: "Article"; _id?: string | null; title?: string | null; image?: { __typename: "Media"; _id?: string | null; url?: string | null; } | null; }[] | undefined; pageInfo: { __typename: "PageInfo"; endCursor?: string | null; hasNextPage?: boolean | null; hasPreviousPage?: boolean | null; startCursor?: string | null; } | null | undefined; isLoadingArticles: boolean; error: import("@apollo/client").ErrorLike | undefined; fetchMoreArticles: () => void; }; export {};