import type { TCheckerGroupItemsProp } from "../config/types/index.d.mts"; interface IGetCheckedItemsParams { type?: "checkbox" | "radio"; name?: string; value?: string; checked?: boolean; } /** * Получает элементы с состоянием `checked` * @returns */ export declare const getCheckedItems: (items: TCheckerGroupItemsProp | undefined, params: IGetCheckedItemsParams) => TCheckerGroupItemsProp; export {};