import type { CheckedDataType, TargetsType } from '@ourschool/utils/typings/task_send_contact'; declare const TaskSendContact: { ({ includes, onConfirm, defaultValue, schoolId, }: { schoolId?: number; defaultValue?: { students?: CheckedDataType[]; teachers?: CheckedDataType[]; }; onConfirm: (data: { students: CheckedDataType[]; teachers: CheckedDataType[]; }) => void; includes: Array<"student" | "teacher">; }): import("react/jsx-runtime").JSX.Element | null; Select({ value, onChange, schoolId, includes, }: { includes?: Array<"student" | "teacher">; schoolId?: number; value?: { students?: CheckedDataType[]; teachers?: CheckedDataType[]; }; onChange?: (v: typeof value) => void; }): import("react/jsx-runtime").JSX.Element; }; export { TaskSendContact }; export type { CheckedDataType, TargetsType };