import * as Types from '../graphql-types'; export type ApplicationManagedComponentsQueryVariables = Types.Exact<{ query: Types.CompassApplicationManagedComponentsQuery; }>; export type ApplicationManagedComponentsQuery = { __typename?: 'Query'; compass?: { __typename?: 'CompassCatalogQueryApi'; applicationManagedComponents?: { __typename?: 'CompassApplicationManagedComponentsConnection'; nodes?: Array<{ __typename?: 'CompassComponent'; id: string; }> | null; pageInfo: { __typename?: 'PageInfo'; hasNextPage: boolean; startCursor?: string | null; endCursor?: string | null; hasPreviousPage: boolean; }; } | { __typename?: 'QueryError'; identifier?: string | null; message?: string | null; extensions?: Array<{ __typename?: 'AdminApplicationErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'CplsQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'GenericQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'HelpLayoutQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'JiraIssueCommandPaletteActionUnsupportedErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'JiraIssueFieldUnsupportedErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'JiraIssueSearchErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'JiraVersionConnectionResultQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'LpConnectionQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'ShepherdGenericQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'ToolchainCheckAuthErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'ToolchainContainerConnectionErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'ToolchainWorkspaceConnectionErrorExtension'; statusCode?: number | null; errorType?: string | null; }> | null; } | null; } | null; }; export declare const ApplicationManagedComponents = "\n query applicationManagedComponents($query: CompassApplicationManagedComponentsQuery!) {\n compass @optIn(to: \"compass-beta\") {\n applicationManagedComponents(query: $query) {\n ... on CompassApplicationManagedComponentsConnection {\n nodes {\n ... on CompassComponent {\n id\n }\n }\n pageInfo {\n hasNextPage\n startCursor\n endCursor\n hasPreviousPage\n }\n }\n ... on QueryError {\n identifier\n message\n extensions {\n statusCode\n errorType\n }\n }\n }\n }\n}\n ";