import React from 'react'; import type { IFormInputProps, OmitControlledInputPropsFrom } from './interface'; import './ChecklistInput.less'; interface IChecklistInputProps extends IFormInputProps, OmitControlledInputPropsFrom> { options?: IChecklistInputOption[]; stringOptions?: readonly string[]; inline?: boolean; showSelectAll?: boolean; } export interface IChecklistInputOption { label: string; value: string; } export declare function ChecklistInput(props: IChecklistInputProps): JSX.Element; export {};