import HtmlNode from '../Extension/HtmlNode';
interface CheckListProps {
readonly title: string;
readonly ariaLabel: string;
readonly checklistItems: string[];
}
declare class CheckList extends HtmlNode {
private readonly props;
constructor(element: HTMLElement | null, props: CheckListProps);
render(): void;
}
export default CheckList;