type UseGetLogsProps = { skip?: boolean; [key: string]: unknown; }; export declare const useGetLogs: (props?: UseGetLogsProps) => { logs: { __typename: "Log"; _id?: string | null; action?: import("../../../shared/graphql/graphql").LogActions | null; createdAt?: string | null; comment?: string | null; user?: { __typename: "User"; _id?: string | null; first_name?: string | null; last_name?: string | null; } | null; app?: { __typename: "App"; _id?: string | null; app?: { __typename: "_App"; _id?: string | null; title?: string | null; } | null; } | null; }[]; formattedLogs: { _id: string | null | undefined; action: import("../../../shared/graphql/graphql").LogActions | null | undefined; user: string; comment: string | null | undefined; createdAt: string; }[]; pageInfo: { __typename: "PageInfo"; endCursor?: string | null; hasNextPage?: boolean | null; hasPreviousPage?: boolean | null; startCursor?: string | null; } | null | undefined; isLoadingLogs: boolean; }; export {};