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