/// declare type Props = { header: JSX.Element; actions?: JSX.Element; items: JSX.Element[]; }; export default function LayoutChecklist({ header, items, actions, }: Props): JSX.Element; export {};