/** * Defines the values for the `archived_state` query expression * used in [SearchCatalogItems](api-endpoint:Catalog-SearchCatalogItems) * to return the archived, not archived or either type of catalog items. */ export declare const ArchivedState: { readonly ArchivedStateNotArchived: "ARCHIVED_STATE_NOT_ARCHIVED"; readonly ArchivedStateArchived: "ARCHIVED_STATE_ARCHIVED"; readonly ArchivedStateAll: "ARCHIVED_STATE_ALL"; }; export type ArchivedState = (typeof ArchivedState)[keyof typeof ArchivedState];