export interface ProductExtrasListFilters { productId?: string | undefined; active?: boolean | undefined; search?: string | undefined; limit?: number | undefined; offset?: number | undefined; } export declare const extrasQueryKeys: { readonly all: readonly ["voyant", "extras"]; readonly productExtras: () => readonly ["voyant", "extras", "product-extras"]; readonly productExtrasList: (filters: ProductExtrasListFilters) => readonly ["voyant", "extras", "product-extras", "list", ProductExtrasListFilters]; readonly productExtra: (id: string) => readonly ["voyant", "extras", "product-extras", "detail", string]; readonly slotManifests: () => readonly ["voyant", "extras", "slot-manifests"]; readonly slotManifest: (slotId: string) => readonly ["voyant", "extras", "slot-manifests", string]; };