import React from 'react'; export interface ICheckboxList { /** ID to provide proper index & key definitions for better rendering */ id?: string; /** Mandatory selection of values */ values: Array; /** Optional styles */ style?: object; } export declare const CheckboxList: React.FC;