import { type ProductSwitcherProps } from '@astral/ui'; import { ProductFilterType } from './enums'; export type AstralProductSwitcherType = { /** * Адрес identity * */ identityUrl: string; /** Тип фильтрации продуктов */ filterBy?: ProductFilterType; /** Код для фильтрации */ code?: string; /** * Альтернативная функция для фильтрации продуктов */ filter?: ProductSwitcherProps['filter']; }; export declare const AstralProductSwitcher: ({ identityUrl, filterBy, code, filter, }: AstralProductSwitcherType) => import("react/jsx-runtime").JSX.Element;