import { CSSProperties } from 'react'; interface propType { options: string[] | []; checked?: string[]; selectedStyle?: CSSProperties; style?: CSSProperties; onChange?: (e: { target: { value: string; checked: boolean; }; }) => void; modalType?: string; key?: string | number | undefined; } export declare const MultiChoiceModal1: ({ options, checked, selectedStyle, style, onChange, modalType, key }: propType) => import("react/jsx-runtime").JSX.Element; export {};